/*
  Theme Name: eClass - Learning Management System
  Theme URL: https://eclass.mediacity.co.in/
  Author: Media City
  Author URI: https://mediacity.co.in
  Creation Date: 30 January 2020
  Description: A default stylesheet for eClass - Learning Management System.
  Version: 5.8.0
*/

/*=======================================================================
              [Table of Contents]
=========================================================================

01. Typography 
02. General
03. Preloader
04. 404 page
05. coming-soon page
06. Nav-Bar
07. Home
08. Work
09. Courses
10. Student-View
11. Recommendation
12. Categories
13. Testimonial
14. Footer
15. Product-Dtl-Home-Page
16. Product-Dtl-Page
17. Login-Page
18. SignUp-Page
19. AboutUs-Page
20. Category-Page
21. Blog-Page
22. Blog-dtl-Page
23. Contact-us page
24. Map
25. Courses-Page
26. Filter-Page
27. Featured-Iteam
28. Mobile-Page
29. Help-Page
30. Terms-page
31. Teach-Online-Page
32. Affiliate-Page
33. Careers-page 

/* =============== Colors Used =====================

  Red         : #F44A4A;
  Mehroon     : #992337;
  Blue        : #0284A2;
  Black       : #000;
  White       : #FFF;
  Gray        : #F4F4F4;
  Yellow      : #F5C252;
  
 ===================================================*/

/* ================================= */
/*===== Typography =====*/
/* ================================= */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-black-color);
    font-size: 15px;
    text-align: right;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

html,
body {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

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;
    text-align: right;
}

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;
}

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: var(--background-red-bg-color);
    color: var(--text-white-color);
    font-size: 15px;
    font-weight: 400;
    border: 1px solid transparent;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    border: 1px solid transparent;
    background-color: var(--background-mehroon-bg-color);
}

.btn-secondary {
    padding: 20px 25px;
    background-color: var(--background-white-bg-color);
    color: var(--text-light-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-color: var(--background-blue-bg-color);
    color: var(--text-white-color);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--text-blue-color);
    border-radius: 6px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-info:hover {
    border: 1px solid #00576B;
    background-color: #00576B;
    color: var(--text-white-color);
}

.btn-link {
    padding: 5px;
    font-size: 13px;
    padding: 3px 17px;
    background-color: transparent;
    color: var(--text-light-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: #505763;
    color: #505763;
    text-decoration: none;
}

.btn-light {
    font-size: 16px;
    border-radius: 0;
    background-color: var(--background-blue-bg-color);
    color: var(--text-white-color);
    width: 100%;
    border: 1px solid var(--text-blue-color);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-light.active,
.btn-light:hover {
    background-color: var(--text-dark-blue-color);
    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: 99%;
}

.owl-carousel .owl-nav button.owl-next {
    margin-left: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    color: var(--text-red-color);
    background-color: var(--background-white-bg-color);
    border-radius: 100%;
    box-shadow: 0 0 4px 3px rgb(0 0 0 / 4%);
    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 var(--text-black-color);
    background-color: var(--background-white-bg-color);
    margin-right: 5px;
}

.owl-dot.active {
    border: 1px solid #0891FF;
}

.rating {
    unicode-bidi: bidi-override;
    display: inline-block;
    font-size: 12px;
    color: #F4C150;
    margin-bottom: 5px;
}

.rating input {
    position: absolute;
    left: -999999px;
}

.rating label {
    display: inline-block;
    font-size: 0;
}

.rating > label:before {
    position: relative;
    font: 16px/1 FontAwesome;
    display: block;
    content: "\f005";
    color: #F4C150;
    background: -webkit-linear-gradient(-45deg, #B6C1C7 0%, #B6C1C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before,
.rating > label.selected:before,
.rating > label.selected ~ label:before {
    color: #F4C150;
    background: -webkit-linear-gradient(-45deg, #FCB551 0%, #D69A45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h-center {
    margin: 0 auto;
    left: 0;
    right: 0;
}

.v-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-center {
    text-align: center;
}

.txt-rgt {
    text-align: right;
}

.txt-black {
    color: var(--text-black-color);
}

.border-btm {
    border-bottom: 1px solid #DEDFE0;
}

.btm-120 {
    margin-bottom: 120px;
}

.btm-105 {
    margin-bottom: 105px;
}

.btm-60 {
    margin-bottom: 60px;
}

.btm-40 {
    margin-bottom: 40px;
}

.btm-30 {
    margin-bottom: 30px;
}

.btm-20 {
    margin-bottom: 20px;
}

.btm-10 {
    margin-bottom: 10px;
}

.btm-5 {
    margin-bottom: 5px;
}

.rgt-20 {
    margin-left: 20px;
}

.rgt-15 {
    margin-left: 15px;
}

.rgt-10 {
    margin-left: 10px;
}

.rgt-5 {
    margin-right: 5px;
}

.lft-7 {
    margin-left: 7px;
}

.lft-10 {
    margin-right: 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: left;
}

.bg-white {
    background-color: var(--background-white-bg-color);
}

.bdr-yellow,
.bdr-purple,
.bdr-blue {
    border-top: 8px solid #F4C150;
    border-radius: 4px 4px 0 0;
}

.bdr-purple {
    border-top: 8px solid #853C6C;
}

.bdr-blue {
    border-top: 8px solid var(--text-blue-color);
}

button:focus {
    outline: none;
}

.italic {
    font-style: italic;
}

.section-heading {
    position: relative;
    padding: 22px 0;
    margin-bottom: 50px;
}

.section-heading:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: 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;
}

/* ================================= */
/*===== 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 rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 8%);
}

.nav-search .form-control {
    padding: 13px 20px 13px 0;
    color: var(--text-black-color);
    border-radius: 0;
    border: none;
    background-color: var(--background-grey-bg-color);
    display: inline-block;
    float: left;
    width: 250px;
}

.nav-bar-main-block .logo a img {
    width: 100px;
}

.nav-search .btn-primary {
    max-width: 100px;
    height: auto;
}

.Login-btn {
    text-align: left;
    padding: 3px 0;
}

.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: #505763;
    color: #505763;
    background-color: var(--background-grey-bg-color);;
}

.shopping-cart i {
    border: 1px solid transparent;
    padding: 6px 15px;
    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 .btn-primary,
.btn-secondary {
    padding: 7px 15px;
    border-radius: 3px;
}

.Login-btn .btn-secondary {
    padding: 7px 15px;
}

#cssmenu ul ul li a
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: 20px;
    vertical-align: middle;
}

#cssmenu ul ul li a .fa, .fas {
    margin-top: 5px;
}

.featured-iteam-main-block {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .nav-bar-main-block .form-inline.search-form .form-group {
        display: block;
        text-align: center;
        /*margin: 0 auto;*/
        margin-bottom: 0;
    }

    .nav-search form {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .nav-search form {
        justify-content: center;
    }

    .nav-bar-main-block .form-inline.search-form .form-group {
        width: 250px;
    }
}

/* ================================= */
/*===== Home =====*/
/* ================================= */
.home-main-block {
    padding: 120px 90px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;

}

.home-heading {
    font-size: 50px;
}

.home-dtl {
    text-align: right;
}

.home-dtl p {
    font-size: 20px;
}

.search-block .form-group {
    border-radius: 2px;
    position: relative;
}

.search-block .form-control {
    padding: 13px 13px 13px 13px;
    width: 500px;
    border-radius: 1px;
}

.search-block .form-btn .btn-primary {
    position: absolute;
    left: 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: 19px;
    color: #A1A7B3;
    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: 40px;
    }

    .search-block .form-control {
        width: 100%;
    }
}

/* =================================
    /*===== Work =====*/
/* ================================= */
.learning-work-main-block {
    background: var(--linear-gradient-bg-color);
    padding: 10px 0;
}

.work-heading {
    font-size: 17px;
    font-weight: 500;
}

.learning-work-dtl p {
    font-size: 15px;
}

.learning-work-dtl {
    padding: 5px 10px;
}

.learning-work-icon i {
    font-size: 45px;
    margin-left: 10px;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .learning-work-block {
        text-align: center;
        padding: 15px 0;
    }
}

/* =================================
    /*===== Courses =====*/
/* ================================= */
.learning-courses-main-block {
    padding: 40px 0;
}

.learning-selection {
    padding: 150px 28px;
    background-color: var(--background-grey-bg-color);;
    margin-bottom: 30px;
}

.selection-heading {
    font-size: 20px;
    font-weight: 500;
}

.learning-selection p {
    font-size: 17px;
}

.learning-courses ul {
    border-bottom: none;
    margin-bottom: 15px;
}

.learning-courses-main-block .view-block:hover {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
}

.learning-courses-main-block .view-block {
    margin-bottom: 20px;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.learning-courses ul li {
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.learning-courses .btn {
    padding: 0;
    margin-bottom: 7px;
}

.learning-courses .nav-link {
    border: none;
    background-color: #F2F3F5;
    color: var(--text-dark-grey-color);
    border-radius: 5px;
    margin-right: 10px;
    /*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;
    background-color: var(--background-red-bg-color);
    color: #FFF;
    border-radius: 5px;
    /*border-bottom: 5px solid var(--text-blue-color);*/
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.learning-courses .nav-tabs .nav-link:hover {
    background-color: var(--background-red-bg-color);
    color: #FFF;
    /*border-color: var(--text-blue-color) var(--text-blue-color) var(--text-blue-color);*/
}

.learning-courses-main-block .owl-carousel .owl-nav button.owl-prev {
    margin-right: 36px;
    margin-left: -27px;
}

.learning-courses-main-block .owl-carousel .owl-nav button.owl-next {
    margin-left: 96%;
}

.learning-courses-main-block .owl-carousel .owl-nav button.owl-prev,
.learning-courses-main-block .owl-nav button.owl-next {
    top: 32%;
}

.learning-courses-main-block .owl-carousel .owl-nav.disabled {
    display: block;
}

@media (max-width: 992px) {
    .learning-selection {
        display: none;
    }
}

@media (max-width: 567px) and (max-width: 767px) {
    .student-view-slider-main-block {
        margin-bottom: 30px;
    }
}

/* =================================
    /*===== Student-View =====*/
/* ================================= */
.student-view-block {
    margin-bottom: 50px;
}

.student-heading {
    color: #29303b;
}

.view-dtl {
    background-color: #FFF;
    padding: 30px 20px 10px;
    /*
  border: 1px solid #DEDFE0;*/
    border-radius: 0 0 6px 6px;
    /*height: 150px;*//*
  box-shadow: 0 0 1px 1px rgba(20,23,28,0.1), 0 3px 1px 0 rgba(20,23,28,0.1);*/
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.best-seller {
    position: absolute;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    top: 26px;
    bottom: 0;
    left: 10px;
    background-color: #F4C150;
    width: 80px;
    height: 18px;
    padding: 2px 0 0;
    z-index: 9;
    border-radius: 10px 0 0 10px;
    text-transform: capitalize;
}

.student-view-block:hover {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
}

.student-view-block {
    border: 1px solid #FFF;
    border-radius: 6px;
    box-shadow: 0 5px 5px 0 rgb(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;
}

.view-heading {
    font-size: 14px;
    color: var(--text-black-color);;
    font-weight: 500;
    padding: 10px 0 20px;
    display: flex;
    align-items: center;
}

.view-heading a {
    font-size: 14px;
    color: var(--text-black-color);;
    font-weight: 500;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    width: 235px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-dtl p {
    font-size: 8px;
    color: var(--text-light-grey-color);
}

.view-dtl .rating ul li {
    display: inline-flex;
    color: var(--text-light-grey-color);
    font-size: 12px;
    vertical-align: text-bottom;
}

.view-dtl .rating ul li i {
    color: #F4C150;
}

.view-dtl .rate ul li {
    display: inline-block;
    color: var(--text-black-color);
    font-size: 18px;
}

.view-dtl .rate ul li a {
    font-size: 18px;
}

.view-dtl .rate ul li b {
    font-weight: 500;
}

.view-dtl .rate ul li strike {
    font-size: 13px;
    display: inline-block;
    color: var(--text-dark-grey-color);
}

.view-dtl .rate ul li:last-child b {
    font-weight: 400;
}

.view-dtl .rate .rate-r {
    font-size: 18px;
    margin-right: 10px;
    font-weight: 500;
}

.seller-dtl-block {
    padding: 20px 15px;
}

.update-date {
    color: var(--text-light-grey-color);
}

.view-heading-one a {
    font-size: 20px;
    color: var(--text-black-color);;
    font-weight: 500;
}

.student-view-block .view-img {
    position: relative;
}

.student-main-block .owl-carousel .owl-nav button.owl-prev,
.student-main-block .owl-carousel .owl-nav button.owl-next {
    top: 30%;
}

/* =================================
    /*===== Recommendation =====*/
/* ================================= */
.border-recommendation .top-border {
    background: var(--linear-gradient-bg-color);
    height: 8px;
}

.recommendation-main-block {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.recommendation-btn .btn-primary {
    padding: 12px 30px;
    border-radius: 1px;
}

/* ================================= */
/*===== Categories =====*/
/* ================================= */
.categories-main-block {
    padding: 50px 0;
}

.categories-block a {
    color: #14171C;
    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;
}

.categories-block i {
    font-size: 30px;
    margin-left: 15px;
    font-size: 20px;
    vertical-align: middle;
    background-color: #fff;
    padding: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.categories-block {
    border: 2px solid transparent;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
    margin-bottom: 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-block:hover {
    border: 2px solid #F44A4A;
    border-radius: 6px;
}

.categories-block-one {
    padding: 10px;
}

.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;
}

/*.categories-block:hover a {
  color: #FFF;
}
.categories-block:hover i {
  color: #000;
}*/

/* =================================
    /*===== Testimonial =====*/
/* ================================= */
.testimonial-main-block {
    background-color: var(--background-grey-bg-color);;
    padding: 50px 0 30px;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testimonial-block img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-left: 20px;
    object-fit: cover;
    position: absolute;
    top: -70px;
}

.testimonial-block {
    background-color: var(--background-white-bg-color);
    border: 2px solid transparent;
}

/*.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: 7px 0 0;
}

.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 {
    padding: 0px 0 10px;
}

/* .patners-block {
  padding: 40px 100px;
  margin-bottom: 30px;
} */
.patners-heading {
    color: var(--text-light-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: #505763;
}

.blog-dtl p {
    font-size: 17px;
    margin-bottom: 20px;
}

.blog-btn .btn-primary {
    padding: 10px;
    border-radius: 1px;
    font-size: 14px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .border-rgt {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .patners-block {
        padding: 30px 25px;
        margin-bottom: 0;
    }

    .patners-heading {
        font-size: 12px;
    }
}

/* ================================= */
/*===== Footer =====*/
/* ================================= */
.footer-block {
    padding: 0px 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: right;
    padding: 10px 0;
    border: 1px solid #FFF;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
    width: 100px;
}

.footer-dropdown .a {
    border: none;
    color: var(--text-light-grey-color);
}

.footer-dropdown .dropdown-menu li a {
    color: #505763;
}

.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 0 5px 20px;
}

.footer-local-page ul li {
    display: inline-block;
    margin-left: 15px;
    font-size: 13px;
}

.footer-local-page .active a {
    color: #A1A7B3;
}

.tiny-footer {
    padding: 0px 20px 0px;
    /* border-bottom: 5px solid var(--text-red-color);*/
}

.tiny-footer ul {
    margin-bottom: 0;
}

.logo-footer ul li {
    display: inline-block;
    margin-right: 10px;
    color: var(--text-light-grey-color);
    vertical-align: middle;
}

.logo-footer img {
    vertical-align: baseline;
    width: 100px;
}

.copyright-social {
    text-align: left;
    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: var(--background-black-bg-color);
    position: relative;
}

.about-home-block {
    padding: 50px 0;
    color: var(--text-white-color) !important;
}

.about-home-heading {
    font-size: 36px;
    color: var(--text-white-color) !important;
}

.about-home-block p {
    font-size: 16px;
    color: var(--text-white-color) !important;
}

.home-best-seller {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    background-color: #F4C150;
    color: var(--text-black-color);;
    width: 80px;
    height: 25px;
    padding: 5px 0;
    border-radius: 0 10px 10px 0;
    text-transform: capitalize;
}

.about-home-block ul li {
    display: inline-block;
    margin-right: 10px;
}

.about-home-block ul li a {
    color: var(--text-white-color);
}

.about-home-block ul li ul li {
    margin-right: 0;
}

.about-home-icon ul li {
    display: inline-block;
    padding: 15px 0 0;
}

.about-home-icon ul li a {
    color: var(--text-white-color);
    font-size: 16px;
}

.about-home-icon ul li i {
    font-size: 25px;
    vertical-align: bottom;
}

.about-home-icon span:hover {
    color: #CACBCC;
}

.about-icon-one i {
    -webkit-text-stroke: 1px #FFF;
    color: var(--text-black-color);;
}

.about-home-icon i:hover {
    color: var(--text-white-color);
}

.about-home-dtl-block {
    background-color: var(--background-white-bg-color);
    color: #505763;
    padding: 15px 30px;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 0 0 6px 6px;
}

.about-home-rate ul li {
    display: inline-block;
    font-size: 26px;
    color: #29303b;
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-home-rate ul li span {
    font-size: 14px;
    color: #A1A7B3;
    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: 10px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 500;
    font-size: 17px;
}

.about-home-includes-list ul li {
    margin-bottom: 8px;
    font-size: 12px;
}

.about-home-includes-list ul li span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-black-color);
}

.about-home-includes-list ul li i {
    margin-left: 10px;
    -webkit-text-stroke: 1px #505763;
    color: transparent;
}

.about-home-coupon a {
    font-size: 18px;
}

.about-home-share a {
    font-size: 18px;
}

.about-home-training {
    background-color: var(--background-white-bg-color);
    padding: 30px;
    color: #505763;
    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%;
}

/* ================================= */
/*===== Product-Dtl-Page =====*/
/* ================================= */
.about-product-main-block {
    padding: 50px 0;
}

.product-learn-block {
    padding: 20px;
    background-color: var(--background-light-grey-bg-color);
    border: 1px solid #DEDFE0;
    border-radius: 6px;
}

.product-learn-dtl ul li {
    margin-bottom: 20px;
    margin-right: 20px;
    font-size: 12px;
}

.product-learn-dtl i {
    margin-right: 20px;
    color: #A1A7B3;
    font-size: 15px;
    display: inline-block;
    width: 1em;
    margin-right: -1.5em;
    margin-left: .5em;
    text-align: right;
    direction: rtl;
}

.about-home-main-block .video-item {
    text-align: center;
    border: 5px solid #FFF;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px 6px 0 0;
}

.about-home-main-block .video-device .bg_img {
    background-size: cover;
    width: 100%;
    height: 280px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 6px 6px 0 0;
}

.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;
}

.requirements ul {
    list-style-type: disc;
    padding-left: 15px;
}

/*===== Description Block  =====*/
.description-block ul {
    list-style-type: disc;
    padding-left: 15px;
    margin-top: 20px;
}

.description-block ul li {
    padding: 5px;
}

/*===== About Course  =====*/
.about-course ul li {
    padding: 8px;
}

/*===== Featured Review Block  =====*/
.featured-review-block {
    padding: 40px;
    border-radius: 6px;
    background-color: var(--background-grey-bg-color);;
}

.featured-review img {
    border-radius: 100%;
}

.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-light-grey-color) !important;
    font-size: 13px;
}

.featured-review-block .review {
    color: var(--text-light-grey-color);
    font-size: 13px;
}

/*===== 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-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: 12px;
    color: var(--text-light-grey-color);
}

.course-bought-block .course-rating ul li {
    display: inline-block;
}

.course-bought-block .course-rating i {
    color: #F4C150;
}

.course-bought-block .course-user ul li {
    display: inline-block;
}

.course-bought-block .course-user i {
    -webkit-text-stroke: 2px #CACBCC;
    color: transparent;
}

.course-bought-block .course-rate ul li {
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
}

.course-bought-block .course-rate i {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: transparent;
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.course-bought-block .course-rate .heart-two i {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: var(--text-red-color);
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.course-bought-block .course-rate i:hover {
    color: var(--text-red-color);
}

.course-bought-block .course-currency ul li {
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.course-bought-block img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

@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: right;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 40px 10px 10px;
    position: relative;
    margin-bottom: 5px;
    border-radius: 6px;
    background: 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;
    right: 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;
    right: 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;
    text-align: left;
}

.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: #A1A7B3;
    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: 15px;
    right: 20px;
    -webkit-text-stroke: 1px #FFF;
    color: var(--text-light-grey-color);
    font-size: 20px;
}

.together-img .heart-two i {
    position: absolute;
    top: 10px;
    right: 10px;
    -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: 17px;
}

.instructor-post {
    font-weight: 500;
    font-size: 15px;
}

.instructor-block p strong,
.instructor-block p span {
    font-size: 13px;
}

/*===== Student Feedback Block  =====*/
.rating-num {
    color: var(--text-black-color);;
    font-size: 65px;
    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: 0;
    display: block;
}

.histo {
    float: left;
    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: right;
    background-color: var(--text-light-grey-color);
    padding: 15px 18px;
    border-radius: 100%;
    margin-left: 15px;
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
}

.review-month {
    color: var(--text-light-grey-color);
}

.review-rating ul li {
    display: inline-block;
    color: #F4C150;
}

.review-dtl hr {
    margin-bottom: 20px;
}

.btn-success {
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    background-color: transparent;
    color: var(--text-blue-color);
    border: 1px solid var(--text-blue-color);
    border-radius: 3px;
    text-transform: uppercase;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-success:hover {
    color: #003440;
    border: 1px solid #003440;
    background-color: var(--background-white-bg-color);
}

.about-product-main-block .search-block .form-control {
    width: 280px;
    height: 44px;
    display: inline-block;
    float: left;
}

.about-product-main-block .form-btn .btn-primary {
    padding: 10px 20px;
    background-color: 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;
    border-radius: 6px;
}

.report-abuse a {
    color: var(--text-light-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: #505763;
}

/*===== 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: 16px;
    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: 16px;
    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: 10px 45px 10px 0;
    border-radius: 4px;
    border: 1px solid #CACBCC;
}

.signup-form .form-group {
    position: relative;
    bottom: 10px;
}

.signup-form {
    padding: 20px 0 0;
}

.signup-form i {
    position: absolute;
    z-index: 1111;
    top: 17px;
    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;
    margin-left: 10px;
}

.form-check input[type='radio'] {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    outline: none;
    border: 1px solid #DDD;
}

.form-check input[type='radio']:before {
    content: '';
    display: block;
    width: 70%;
    height: 70%;
    margin: 15% auto;
    border-radius: 50%;
}

.form-check input[type="radio"]:checked:before {
    background: #F44A4A;
}

.form-check input[type="radio"]:checked {
    border-color: #DDD;
}

.signup-form .btn-primary {
    padding: 10px 0;
    width: 100%;
}

.signup-block {
    border: solid 1px #DEDFE0;
    border-radius: 0 0 9px 9px;
    padding: 40px 50px;
}

.signup-form hr {
    border-top: 1px solid #DEDFE0;
}

.signin-link {
    font-size: 12px;
    margin-bottom: 10px;
}

.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;
    color: var(--text-white-color) !important;
}

.about-blog-main-block {
    background: var(--linear-gradient-about-bg-color);
    padding: 20px 30px;
    font-weight: 500;
}

.about-blog-block a {
    color: var(--text-white-color);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.about-blog-block span {
    color: #F5C252;
}

.about-blog-block a:hover {
    border-bottom: 1px solid #FFF;
}

.about-home-one-main-block .overlay-bg {
    background: linear-gradient(270deg, transparent -50%, #000 180%);
    padding: 140px 210px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-menu-bar-main-block {
    position: absolute;
    z-index: 99999;
    width: 100%;
}

.navigation-btn {
    text-align: right;
    padding-top: 25px;
}

.nav-menu-bar-main-block #cssmenu > ul > li a {
    padding: 40px 12px 10px;
    color: var(--text-white-color);
}

.about-blog-main-block .about-blog-block i {
    color: transparent;
    border: 2px solid #F4984A;
    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: 100%;
}

.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: 15px;
    font-weight: 500;
    text-align: right;
    color: #1A263A;
    background-color: #F4F4F4;
}

.nav-item:hover .about-nav-heading,
.nav-item .active {
    color: var(--text-white-color);
    background-color: var(--background-red-bg-color);
}

.about-transforming-main-block .nav-tabs {
    padding-top: 40px;
}

.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;
}

.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;
}

@media (min-width: 767px) and (max-width: 992px) {
    .about-transforming-img img {
        height: 100%;
    }

    .about-transforming-block {
        padding: 50px 20px;
    }
}

@media (max-width: 767px) {
    .about-transforming-main-block {
        padding: 10px;
    }

    .about-transforming-main-block .nav-item img {
        width: 100%;
    }

    .about-transforming-main-block .nav-item {
        margin-bottom: 30px;
    }
}

/*===== About-facts Block =====*/
.facts-main-block {
    background-color: #F4F4F4;
    padding: 80px 0 40px;
}

.facts-block-heading {
    font-size: 40px;
    font-weight: 400;
}

.facts-heading-sign {
    font-size: 50px;
    color: #232C3B;
    font-weight: 700;
    display: inline-block;
}

.facts-main-block p {
    font-size: 20px;
    font-weight: 0;
}

.facts-heading {
    font-size: 50px;
    color: #232C3B;
    font-weight: 700;
    display: inline-block;
}

/*===== about-team-block =====*/
.about-team-main-block {
    padding: 90px 0;
}

.about-team-block {
    background-color: #F4F4F4;
    padding: 138px 90px;
    height: 100%;
}

.about-team-heading {
    font-size: 28px;
}

.about-team-block .btn-primary {
    padding: 12px 35px;
}

.about-team-img {
    width: 100%;
}

@media (min-width: 767px) and (max-width: 992px) {
    .about-team-block {
        padding: 70px;
        height: 450px;
    }
}

@media (max-width: 767px) {
    .about-team-img {
        display: none;
    }

    .about-team-block {
        padding: 130px 30px;
    }
}

/*===== about-work-block =====*/
.about-work-main-block {
    background-color: var(--background-black-bg-color);
}

.about-work-block {
    background: var(--linear-gradient-about-blue-bg-color);
    padding: 45px 90px;
    height: 100%;
}

.about-work-heading {
    font-size: 28px;
    padding: 10px;
    color: #F5C252;
}

.about-work-block p {
    color: var(--text-white-color) !important;
}

.about-work-block p a:hover {
    color: #52C3D1;
}

.about-work-btn .btn-secondary {
    color: var(--text-white-color);
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #FFF;
    border-radius: 1px;
    text-transform: none;
    font-weight: 500;
}

.about-work-btn .btn-secondary:hover {
    color: #232C3B;
    background-color: var(--background-white-bg-color);
    border: 1px solid transparent;
    border-radius: 1px;
}

.about-work-img img {
    width: 40px;
    height: 40px;
}

.about-work-main-block .video-device .bg_img {
    background-size: cover;
    width: 100%;
    height: 390px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.about-work-main-block .video-device .overlay-bg {
    opacity: 0.4;
}

.about-work-main-block .video-device {
    position: relative;
}

.about-work-main-block .video-preview {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    margin: 0 auto;
}

.about-work-main-block .video-preview i {
    color: var(--text-white-color);
    font-size: 25px;
    border-radius: 100%;
    border: 2px solid #FFF;
    padding: 20px 22px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.about-work-main-block .video-preview i:hover {
    transform: scale(1.3);
}

.about-work-main-block .video-preview p {
    color: var(--text-white-color);
    padding: 30px 210px;
    text-transform: uppercase;
}

@media (min-width: 767px) and (max-width: 992px) {
    .about-work-block {
        padding: 40px 20px;
    }

    .about-work-main-block .video-preview p {
        padding: 30px;
    }
}

@media (max-width: 567px) {
    .about-work-block {
        padding: 50px 20px;
    }

    .about-work-main-block .video-preview p {
        padding: 30px;
    }
}

/*===== about-blog-block =====*/
.about-learning-blog-main-block {
    background: var(--linear-gradient-about-bg-color);
    padding: 60px 0 0;
    position: relative;
}

.about-learning-blog-heading {
    font-size: 35px;
    font-weight: 400;
    color: var(--text-white-color) !important;
}

.about-learning-blog-dtl {
    border: 1px solid #FFF;
    padding: 20px 30px;
    height: 170px;
    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;
}

.about-learning-blog-dtl:hover {
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}

.about-learning-blog-dtl-heading {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white-color) !important;
}

.about-learning-blog-paragraph p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-white-color) !important;
}

.about-learning-blog-icon i {
    padding: 10px;
    font-size: 16px;
}

.about-social-list {
    margin-top: 90px;
    padding: 20px 0 10px 0;
    background-color: rgba(0, 0, 0, .1);
}

.about-social-list ul li {
    display: inline-block;
    font-size: 26px;
    margin-right: 10px;
    color: var(--text-white-color) !important;
}

.about-social-list ul li a {
    font-size: 26px;
    color: var(--text-white-color);
}

/* ================================= */
/*===== Category-Page =====*/
/* ================================= */
#business-home-slider-two .owl-nav button.owl-next {
    margin-right: -17px;
}

#business-home-slider-two .owl-nav button.owl-prev {
    margin-right: 99%;
}

.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-light-grey-color);
}

.categories-tab-block i {
    -webkit-text-stroke: 1px #686F7A;
    margin-left: 8px;
}

.categories-tab-dtl:hover {
    background-color: #E8E9EB;
}

.learning-courses-main-block-one {
    padding: 200px 0 40px;
}

.business-home-main-block {
    position: relative;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.business-home-slider-main-block {
    position: absolute;
    top: 25%;
    width: 100%;
    z-index: 99999;
}

.business-home-slider-block {
    padding: 20px;
    background-color: var(--background-white-bg-color);
    box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
}

.business-home-slider-img {
    margin-right: 30px;
}

.business-home-slider-btn .btn-info {
    padding: 7px 15px;
    border-radius: 1px;
    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;
}

.learning-courses-main-block-one .owl-carousel .owl-nav button.owl-next {
    margin-left: 98%;
}

.categories-popularity-dtl a i {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: var(--text-white-color);
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.categories-popularity-dtl a i:hover {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: var(--text-red-color);
}

.course-bought-block .rating ul li {
    display: inline-block;
    color: var(--text-light-grey-color);
    margin-bottom: 0;
    line-height: 1;
}

.course-bought-block .rating ul li i {
    color: #F4C150;
}

.categories-popularity-dtl ul li {
    display: inline-flex;
}

.best-seller-one {
    position: relative;
    top: 0;
    padding: 0 12px;
}

.categories-popularity-dtl p {
    font-size: 13px;
    color: var(--text-light-grey-color);
}

.rate-r {
    font-weight: 500;
    font-size: 14px;
}

.categories-popularity-main-block .course-bought-block {
    cursor: pointer;
    padding: 20px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.testimonial-slider-main-block.owl-carousel .owl-item .instructors-img-block img {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.instructors-dtl ul li {
    display: block;
}

.instructors-main-block .testimonial-block ul li + li {
    padding-top: 10px;
}

.instructors-main-block .testimonial-block {
    height: 310px;
    border: 1px solid #E8E9EB;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.categories-main-block-one {
    padding: 50px 0 50px 0;
    background-color: inherit !important;
}

/*.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-color: var(--background-blue-bg-color);
    border: 1px solid var(--text-blue-color);
}

.categories-popularity-main-block .pagination .page-item .page-link.active {
    color: var(--text-white-color);
    background-color: var(--background-blue-bg-color);
    border: 1px solid var(--text-blue-color);
}

.categories-popularity-main-block .pagination .page-item .page-link i {
    border-radius: 100%;
    color: #A1A7B3;
    padding: 20px 23px;
    border: 1px solid #A1A7B3;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.categories-popularity-main-block .pagination .page-item .page-link i:hover {
    color: var(--text-blue-color);
    padding: 20px 23px;
    background-color: inherit;
    border: 1px solid var(--text-blue-color);
}

.categories-popularity-block {
    border: 1px solid #E8E9EB;
    padding: 15px;
}

.categories-popularity-img {
    float: left;
}

.categories-popularity-img-heading {
    font-size: 16px;
    font-weight: 500;
}

.categories-popularity-img-dtl {
    display: table;
    padding: 5px 10px 0;
}

.categories-popularity-img-dtl p {
    font-size: 14px;
}

.categories-popularity-img-dtl span {
    font-weight: 500;
}

.categories-popularity-block ul li {
    display: inline-block;
    margin-right: 10px;
}

.try-learning {
    font-weight: 500;
}

.popularity-Sort ul li {
    display: inline-block;
}

.popularity-Sort ul li ul li {
    display: block;
    padding: 5px 10px;
}

.popularity-Sort a {
    font-weight: 500;
    color: var(--text-black-color);;
    font-size: 15px;
}

.popularity-Sort ul li ul li a {
    font-weight: 400;
}

.business-home-slider-block {
    margin-bottom: 50px;
}

.catalog-main-block {
    margin-bottom: 15px;
    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-light-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: 44%;
    }
}

@media (min-width: 992px) and (max-width: 1500px) {
    .business-home-slider-main-block {
        top: 44%;
    }
}

@media (max-width: 992px) {
    .categories-main-block-one .categories-block {
        width: 100%;
    }

    .business-home-slider-main-block {
        position: relative;
        top: -160px;
    }
}

@media (max-width: 767px) {
    .learning-courses-main-block-one {
        padding: 490px 0 40px;
    }

    .business-home-slider-main-block .owl-carousel .owl-item img {
        position: relative;
        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: #505763;
    padding: 50px 20px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 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: 46px;
    position: relative;
    margin-bottom: 0;
    color: var(--text-white-color) !important;
}

.blog-main-block {
    padding: 40px 0 0;
}

.blog-main-block hr {
    margin-top: 50px;
}

.blog-slider-dtl {
    padding: 10px 30px;
}

.slider-date {
    color: #6D7A91;
}

.blog-slider-heading a {
    font-size: 24px;
}

.blog-slider-heading a:hover {
    color: #52C3D1;
}

.business-home-slider-btn .btn-link {
    background-color: #F4F4F4;
    border-color: transparent;
    color: #6D7A91;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.business-home-slider-btn .btn-link:hover {
    background-color: var(--background-red-bg-color);
    border-color: transparent;
    color: var(--text-white-color);
}

.blog-main-block button.owl-next,
.blog-main-block button.owl-prev,
.blog-main-block button.owl-dot {
    background-color: #CBCBCB;
    border: 1px solid #CBCBCB;
    width: 10px;
    height: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    margin-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;
}

.page-item .page-link {
    color: #F44A4A;
    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: var(--background-red-bg-color);
    border: 1px solid #F44A4A;
    border-radius: 0;
    padding: 10px 15px;
}

.page-item .page-link:hover {
    color: var(--text-white-color);
    background-color: var(--background-red-bg-color);
    border: 1px solid #F44A4A;
}

.blog-main-block .pull-right {
    float: left;
}

.page-item.disabled .page-link {
    color: #F44A4A;
}

.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-left: 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-left: 10px;
}

.blog-dtl-block-heading {
    font-size: 38px;
}

.blog-dtl-heading-dtl,
.blog-dtl-heading-dtl a {
    color: rgba(0, 0, 0, .5)
}

.blog-dtl-heading-dtl a:hover {
    color: var(--text-red-color);
}

.blog-dtl-block a,
.blog-idea a {
    color: #0C849D;
    font-size: 20px;
}

.blog-dtl-block a:hover,
.blog-idea a:hover {
    color: #52C3D1;
}

.blog-dtl-block p,
.blog-dtl-block a {
    font-size: 19px;
}

.blog-dtl-block span {
    font-weight: 700;
}

.blog-dtl-block hr {
    border-bottom: 2px solid #F7F7F7;
}

.blog-link span {
    color: #666;
    font-weight: 500;
}

.blog-link-one i {
    margin-left: 20px;
    margin-right: 0;
}

.blog-link-one:hover i {
    margin-left: 10px;
    margin-right: 0;
}

@media (max-width: 767px) {
    .blog-dtl-img img {
        width: 100%;
    }
}

/* =================================
    /*===== Contact-us page =====*/
/* ================================= */
.contact-us-main-block {
    padding: 90px 0;
}

.contact-two-heading {
    margin-bottom: 27px;
}

.contact-us ul {
    margin-bottom: 25px;
}

.contact-us-form .form-group-two {
    margin-bottom: 14px;
}

.contact-us-main-block .contact-form-btn {
    margin-bottom: 120px;
}

.contact-us-main-block .comment textarea {
    width: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 4px;
    background-color: var(--background-white-bg-color);
    padding: 24px 19px 0;
    font-size: 16px;
    color: var(--text-light-grey-color);
}

.contact-us-main-block .form-group .form-control {
    padding: 5px 20px;
    margin-bottom: 22px;
}

.contact-form-btn .btn-primary {
    padding: 8px 25px;
}

.contact-us-main-block .contact-dtl ul {
    text-align: center;
    padding: 30px;
    height: 80%;
    border: 1px solid #FFF;
    border-radius: 6px;
    padding: 30px 0;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

.contact-us-main-block .contact-dtl ul li {
    font-size: 16px;
}

.contact-us-main-block .contact-dtl ul li i {
    font-size: 25px;
}

.contact-us-main-block .caps {
    text-transform: uppercase;
    font-weight: 500;
}

/* =================================
    /*===== Map =====*/
/* ================================= */
.map-location {
    width: 100%;
    height: 520px;
}

/* ================================= */
/*===== Courses-Page =====*/
/* ================================= */
.learning-courses-about-main-block {
    /*background-color: #F2F3F5;*/
    margin-bottom: 50px;
}

.learning-courses-home-main-block {
    background-color: var(--background-black-bg-color);
    padding: 40px 0;
}

.learning-courses-home-heading {
    color: var(--text-white-color) !important;
}

.learning-courses-home-heading a {
    color: var(--text-white-color);
    font-size: 24px;
}

.learning-courses-home-block .progress {
    width: 90%;
    float: left;
    display: inline-block;
    height: 6px;
    background-color: var(--text-light-grey-color);
}

.learning-courses-home-block i {
    color: var(--text-light-grey-color);
    vertical-align: top;
}

.progress-block .progress-heading {
    font-weight: 500;
}

.learning-courses-home-heading a:hover {
    color: var(--text-blue-color);
}

.learning-courses-home-btn .btn-primary {
    padding: 15px;
    border-radius: 1px;
}

.learning-contact-block {
    padding: 30px 0;
}

.learning-contact-btn .btn-primary {
    padding: 15px 10px;
}

.learning-contact-search {
    float: right;
    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-color: var(--background-blue-bg-color);
    border-radius: 1px;
}

.profile-list ul li {
    display: inline-block;
    padding: 10px;
    color: #A1A7B3;
}

.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;
}

.learning-courses-about-main-block .tab-pane {
    background-color: #F2F3F5;
    padding: 20px 40px;
    border-radius: 10px;
}

.learning-announcement {
    padding: 40px 0;
}

.learning-announcement .card-body p {
    text-align: right;
    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 #F4F4F4;
}

.learning-questions-img {
    float: right;
    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: right;
    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-right: 10px;
}

.learning-questions-dtl {
    padding: 12px 10px;
}

.learning-questions-dtl a {
    color: #505763;
}

.learning-questions-dtl-block {
    padding: 10px 20px 10px 0;
    border-bottom: 1px solid #F4F4F4;
}

.learning-questions-dtl-block:last-child {
    border-bottom: none;
}

.learning-questions-block {
    background-color: var(--background-white-bg-color);
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.learning-questions-block:hover {
    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: #505763;
}

.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;
}

.profile-heading.txt-rgt {
    text-align: left ! important;
}

.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: right;
    text-decoration: none;
    font-size: 15px;
    padding: 0 5px;
    position: relative;
    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 .live-class {
    color: var(--text-red-color);
    font-size: 14px;
    display: inline-block;
}

.learning-courses-about-main-block .second-accordion .card-body a {
    color: var(--text-light-grey-color);
}

.learning-courses-about-main-block .second-accordion .card-body.active {
    background-color: 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: var(--text-dark-blue-color);
}

.learning-courses-about-main-block .nav-tabs {
    padding: 50px 0 0;
    margin-bottom: 40px;
    border-bottom: inherit;
    -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 {
    background-color: #F2F3F5;
    font-size: 15px;
    color: var(--text-light-grey-color);
    border-bottom: inherit !important;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    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);;
}

.learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link,
.learning-courses-about-main-block .nav-tabs .nav-link.active {
    background-color: var(--background-red-bg-color);
    color: #FFF;
    border-radius: 5px;
    margin-right: 10px;
    padding: 10px 20px;
    /* border-bottom: 5px solid var(--text-blue-color);*/
}

.blog-slider-block {
    margin-bottom: 50px;
}

.section-dividation {
    font-size: 14px;
    text-align: left !important;
}

.profile-block .text-right {
    text-align: left !important;
}

.class-size {
    font-size: 12px;
    color: var(--text-light-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;
        width: 25%;
    }
}

@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: #505763;
}

.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;
    border-radius: 6px;
}

.filter-dropdown ul li {
    display: inline-block;
}

.filter-dropdown .language-select .select {
    color: var(--text-light-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 var(--text-blue-color);
    color: var(--text-blue-color)
}

.filter-btn-one .btn-info:hover {
    background-color: var(--background-white-bg-color);
    border: 1px solid #003440;
    color: #003440;
}

.filter-list span {
    font-weight: 500;
}

.filter-dropdown .dropdown-menu {
    width: 290px;
}

.filter-dropdown .dropdown-menu .form-check-input {
    margin: -10px 0 0 0;
}

.filter-dropdown .dropdown-menu-one {
    width: 190px;
    padding: 20px;
}

.filter-dropdown .dropdown-menu-one ul li {
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .filter-btn {
        float: left;
    }
}

/* ================================= */
/*===== Featured-Item =====*/
/* ================================= */
.featured-iteam-main-block {
    padding: 60px 0;
}

.iteam-main-block {
    margin-bottom: 30px;
}

.iteam-block {
    margin-bottom: 15px;
}

.iteam-tooltip {
    display: none;
}

.protip-skin-default--scheme-pro.protip-container {
    background: #1A1D32;
    border-radius: 0;
}

.protip-skin-default--size-normal {
    padding: 10px;
}

.iteam-tooltip img,
.protip-content img {
    width: 550px;
}

.iteam-tooltip-dtl {
    padding: 10px 0;
}

.iteam-tooltip-heading {
    color: var(--text-white-color);
}

.iteam-tooltip-authoor-dtl span {
    color: #F0F0F0;
    opacity: 0.9;
    font-size: 12px;
    margin-bottom: 30px;
}

.iteam-tooltip-category {
    margin-top: 22px;
}

.iteam-tooltip-category ul li {
    display: inline-block;
    color: #F0F0F0;
    opacity: 0.5;
    font-size: 12px;
}

.iteam-tooltip-price {
    text-align: right;
}

.iteam-tooltip-price span {
    color: var(--text-white-color);
    font-size: 46px;
    font-weight: 700;
}

.iteam-tooltip-price span.currency {
    font-size: 20px;
    vertical-align: top;
}

/* ================================= */
/*===== Mobile-Page =====*/
/* ================================= */
.mobile-main-block {
    padding: 50px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.mobile-heading {
    font-size: 48px;
}

.mobile-dtl-list {
    font-size: 22px;
}

.mobile-btn img {
    width: 25%;
}

.mobile-btn {
    display: inline-block;
    float: left;
}

.mobile-dtl-list ul {
    list-style-type: disc;
}

/* ================================= */
/*===== Help-Page =====*/
/* ================================= */
.nav-bar-main-block-one .footer-dropdown {
    padding: 0;
}

.nav-bar-main-block-one .footer-dropdown .a {
    border: 1px solid transparent;
}

.nav-bar-main-block-one .footer-dropdown .btn-primary {
    padding: 5px 10px;
    background-color: var(--background-white-bg-color);
    color: var(--text-red-color);
    border: 1px solid var(--text-red-color);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.nav-bar-main-block-one .footer-dropdown .btn-primary:hover {
    color: var(--text-white-color);
    background-color: var(--background-red-bg-color);
}

.help-main-block {
    background: var(--linear-gradient-bg-color);
    padding: 90px 0;
}

.help-main-block .text {
    width: 100%;
}

.help-main-block .text:after {
    display: none;
}

.help-search {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.help-search .form-control {
    border-radius: 30px;
    width: 100%;
    padding: 13px 50px 13px 0;
}

.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 var(--text-blue-color);
    color: var(--text-light-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-light-grey-color);
}

.help-tab {
    font-size: 16px;
    color: #4A4A4A;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.help-tab-one-block {
    padding: 15px;
}

.help-contact {
    background-color: var(--background-blue-bg-color);
    padding: 30px;
    height: 210px;
    color: var(--text-white-color) !important;
}

.help-contact:hover {
    background-color: #00576B;
    background-image: inherit;
    background-origin: inherit;
    background-clip: inherit;
}

.help-contact ul li {
    font-size: 16px;
    color: var(--text-white-color) !important;
}

.help-contact span {
    font-size: 24px;
}

.help-tab-one {
    height: 210px;
}

.help-tab-two {
    padding: 30px;
}

.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-light-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-light-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-color: var(--background-blue-bg-color);
}

.terms-details-list .active a {
    color: var(--text-white-color);
}

.terms-details-list ul li {
    border: 1px solid #EAEAEA;
    padding: 10px 17px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.terms-details-list ul li:hover {
    color: #555;
    background-color: #F5F5F5;
}

.terms-details-list ul li a {
    color: #555;
    font-size: 15px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.terms-details-list ul li:hover a {
    color: #555;
}

.term-heading {
    font-size: 25px;
}

.term-block p {
    font-size: 15px;
}

.term-block span {
    font-weight: 500;
}

.term-block .content-heading {
    font-size: 18px;
}

.term-block ul {
    list-style-type: disc;
    margin-left: 40px;
}

.term-block ul li a {
    font-size: 16px;
}

.sky-blue {
    background-color: #e6f2f5;
    padding: 20px;
}

/* ================================= */
/*===== Teach-Online-Page =====*/
/* ================================= */
.home-btn .btn-primary {
    padding: 15px 55px;
    font-style: 500;
    border-radius: 1px;
}

.online-testimonial-main-block {
    padding: 40px 0 60px;
}

.online-testimonial-block ul li {
    font-size: 16px;
}

.online-testimonial-block ul li span {
    font-size: 18px;
}

.facts-main-block-one .facts-block {
    margin-bottom: 40px;
}

.facts-main-block-one {
    padding: 50px;
}

.facts-main-block-one .facts-heading,
.facts-main-block-one .facts-heading-sign {
    font-weight: 100;
}

.facts-main-block-one .facts-dtl {
    font-size: 18px;
    padding: 0 50px;
}

.success-envision-main-block {
    padding: 40px 0 60px;
}

.success-envision-main-block [class^="flaticon-"]:before,
.success-envision-main-block [class*=" flaticon-"]:before,
.success-envision-main-block [class^="flaticon-"]:after,
.success-envision-main-block [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: 55px;
    font-style: normal;
    margin-left: 10px;
}

.success-envision-main-block i {
    font-size: 55px;
    padding: 25px;
    border: 1px solid #FFF;
}

.success-envision-main-block i:hover {
    padding: 25px;
    border: 1px solid rgba(41, 48, 59, .2);
    background-color: rgba(41, 48, 59, .2);
    border-radius: 50%;
}

.success-envision-main-block .text {
    position: relative;
    height: 100px;
    width: 360px;
    margin: 0 auto;
}

.success-envision-main-block .text:after {
    content: "";
    position: absolute;
    top: 60%;
    width: 150px;
    height: 1px;
    color: rgba(41, 48, 59, .25);
    background: var(--background-black-bg-color);
}

.success-envision-main-block .text:after {
    right: 0;
}

.nav-detail {
    font-size: 18px;
    font-weight: 500;
    color: #505763;
}

.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-light-grey-color);
}

.success-envision-dtl span {
    font-weight: 500;
    color: #505763;
    font-size: 19px;
}

.online-blog-main-block {
    padding: 0 0 60px;
}

.online-blog-main-block .section p {
    font-size: 20px;
}

.online-blog-block {
    padding: 30px;
    border: 1px solid #DEDFE0;
    border-radius: 0 0 4px 4px;
}

.online-blog-block p {
    font-size: 18px;
}

.online-blog-img img {
    border-radius: 100%;
    width: 100%;
}

.success-envision-dtl-img img {
    width: 100%;
}

.online-blog-dtl {
    font-weight: 500;
}

.online-blog-img-dtl p {
    font-size: 14px;
}

.online-help-main-block {
    padding: 30px 0 150px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
}

.online-help-main-block .section-heading {
    margin-bottom: 110px;
}

.online-help-main-block p {
    font-size: 20px;
}

.instructor-main-block {
    padding: 80px 0 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-light-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-light-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-light-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-light-grey-color);
    font-weight: 700;
    font-size: 20px;
}

.affiliate-faq-main-block p {
    color: var(--text-light-grey-color);
    font-size: 15px;
}

.affiliate-heading {
    text-transform: uppercase;
    color: var(--text-light-grey-color);
    text-align: center;
    margin-bottom: 70px;
}

.affiliate-steps-heading {
    color: #FF7373;
    font-size: 18px;
}

.affiliate-steps-block .affiliate-border {
    border-left: solid 4px #FF7373;
    padding-left: 20px;
}

.affiliate-steps-block .affiliate-border:before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    left: -18px;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    border: 5px solid #FF7373;
    background-color: var(--background-white-bg-color);
    color: #FF7373;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 576px) {
    .affiliate-dtl-main-block .bdr-right,
    .affiliate-dtl-main-block .bdr-left {
        display: none;
    }
}

/* ================================= */
/*===== Careers-page =====*/
/* ================================= */
.careers-main-block {
    background: var(--linear-gradient-career-bg-color);
    padding: 130px 0 410px;
    position: relative;
}

.careers-heading {
    font-size: 62px;
}

.careers-block p {
    font-size: 20px;
    padding: 0 150px;
}

.careers-btn .btn-primary {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 17px;
    margin-bottom: 90px;
}

.careers-video-main-block {
    position: absolute;
    top: 100%;
    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 0;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.careers-learn-block {
    background-color: var(--background-white-bg-color);
    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%;
    object-fit: cover;
}

.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 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-dtl .second-accordion .card-header {
    background: transparent;
    border-bottom: 0;
}

.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: var(--text-light-grey-color);
    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;
    }

    .careers-video-main-block {
        top: 750px;
    }
}

@media (max-width: 576px) {
    .careers-block p {
        padding: 0;
        font-size: 14px;
    }

    .careers-main-block {
        padding: 0 0 100px;
    }

    .careers-video-main-block {
        top: 670px;
    }

    .careers-info-main-block {
        padding: 40px 10px;
    }

    .careers-learn-main-block {
        padding: 10px;
    }

    .careers-learn-video .bdr-right {
        border-right: hidden;
    }

    .careers-learn-video,
    .join-team-main-block {
        padding: 0;
    }

    .career-faq-place {
        text-align: left;
    }

    .join-team-main-block .faq-block {
        padding: 60px 40px 10px 60px;
    }

    .careers-heading {
        font-size: 40px;
    }
}

/* ================================= */
/*===== 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: var(--text-dark-blue-color);
    padding-left: 3px;
}

.review-table .table td,
.review-table .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: none;
    font-weight: 500;
    color: var(--text-dark-blue-color);
    text-align: right;
}

.blog-main-block .owl-carousel .owl-item img {
    display: block;
    width: 200px;
    height: 200px;
    margin-left: 50px;
    border-radius: 6px
}

.about-home-btn .btn-secondary {
    padding: 8px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    background-color: var(--background-blue-bg-color);
    color: var(--text-white-color);
}

.about-home-btn .btn-secondary:hover {
    background-color: var(--text-dark-blue-color);
    border: 1px solid #003845;
    color: var(--text-white-color);
}

.learning-courses-home-video .video-item {
    text-align: center;
    border: 5px solid #FFF;
}

.learning-courses-home-video .video-device .bg_img {
    background-size: cover;
    width: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.learning-courses-home-video .video-device {
    position: relative;
}

.learning-courses-home-video .video-item .video-preview,
.learning-courses-home-video .video-item .video-preview iframe {
    width: 100%;
    height: 200px;
}

.learning-courses-home-video .video-preview {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 30;
    width: 100%;
}

.learning-courses-home-video .btn-video-play i {
    margin: 0 auto;
    position: relative;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    z-index: 30;
    color: var(--text-white-color);
    font-size: 42px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, .6);
    padding: 25px 27px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.learning-courses-home-video .btn-video-play:hover {
    opacity: 0.8;
}

.learning-questions-dtl ul li a {
    color: var(--text-blue-color);
    font-size: 11px;
}

.learning-answer-block {
    margin-left: 40px;
    margin-bottom: 10px;
}

.learning-answer-img {
    font-size: 12px;
    float: left;
    background-color: rgb(104, 111, 122);
    text-transform: uppercase;
    color: var(--text-white-color);
    padding: 7px;
    border-radius: 100%;
}

.learning-answer-dtl {
    padding: 0px 10px;
    vertical-align: middle;
}

.learning-answer-dtl ul li a {
    color: var(--text-blue-color);
    font-size: 11px;
}

/* ================================= */
/*======= Wishlist Page=====*/
/* ================================= */
.wishlist-home-main-block {
    padding: 110px 0 200px;
    position: relative;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.wishlist-home-heading {
    position: relative;
    color: var(--text-white-color) !important;
}

.wishlist-icon {
    position: absolute;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    top: 12px;
    bottom: 0;
    left: 0;
    background-color: transparent;
    width: 80px;
    height: 15px;
    z-index: 9;
    border-radius: 0 10px 10px 0;
    color: var(--text-white-color);
    -webkit-text-stroke: 1px var(--text-red-color);
}

.cart-btn .btn-primary {
    font-size: 18px;
    font-weight: 500;
    top: 12px;
    background-color: inherit;
    color: var(--text-white-color);
    border: inherit;
    padding: 2px 40px;
}

.wishlist-btn .btn-primary {
    font-size: 18px;
    font-weight: 500;
    top: 12px;
    background-color: inherit;
    color: var(--text-white-color);
    border: inherit;
    padding: 2px 40px;
}

/*wishlist icon*/
.wishlisht-btn {
    background-color: transparent;
    border: none;
    color: var(--text-white-color);
}

.about-icon-two {
    color: var(--text-white-color);
}

.about-icon-two i {
    color: var(--text-white-color);
}

.heart-two i {
    color: var(--text-red-color);
}

.nav-wishlist i {
    font-size: 20px;
    color: var(--text-white-color);
    -webkit-text-stroke: 1px var(--text-red-color);
    border: 1px solid transparent;
    padding: 14px 14px;
    border-radius: 100%;
    display: inline-flex;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.nav-wishlist i:hover {
    background: rgba(20, 23, 28, 0.05);
    border: 1px solid rgba(20, 23, 28, 0.05);
}

@media (max-width: 992px) {
    .wishlist-action {
        margin-bottom: 30px;
    }

    .review-table .table thead th {
        font-size: 13px;
    }
}

/* ================================= */
/*======== Cart Page=====*/
/* ================================= */
.cart-main-block {
    padding: 60px 0;
}

.cart-add-block {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
    padding: 10px 20px 10px 10px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.cart-heading {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #29303b;
}

.cart-add-block:hover {
    background-color: #E8E9EB;
}

.cart-img {
    position: relative;
}

.cart-img img {
    width: 100%;
}

.cart-add-block .cart-course-name {
    font-weight: 500;
}

.cart-add-block .cart-course-update {
    font-size: 13px;
    color: var(--text-light-grey-color);
}

.cart-add-block .cart-actions a {
    font-size: 13px;
    color: var(--text-blue-color);
    font-weight: 400;
}

.cart-add-block .cart-actions a:hover {
    color: var(--text-black-color);
}

.cart-add-block .cart-actions i {
    color: #F4C150;
}

.cart-add-block .cart-course-amount {
    text-align: left;
}

.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-light-grey-color);
}

.cart-add-block .cart-course-amount i {
    color: var(--text-black-color);
}

.cart-price {
    font-size: 36px;
    font-weight: 500;
    color: #29303b;
}

.cart-original-price {
    font-size: 15px;
    color: var(--text-light-grey-color);
}

.cart-original-price s {
    font-size: 15px;
    color: #686f7a;
}

.checkout-btn .btn-primary {
    width: 100%;
    color: var(--text-white-color);
    background-color: var(--background-red-bg-color);
    border: 1px solid transparent;
    padding: 15px 0;
    margin-top: 10px;
    font-weight: 500;
    border-radius: 2px;
}

.cart-remove-btn {
    border: none;
    background-color: transparent;
    font-size: 13px;
    color: var(--text-blue-color);
    font-weight: 400;
    padding: 0;
    cursor: pointer;
}

.cart-remove-btn:hover {
    color: var(--text-black-color);
}

.cart-wishlisht-btn {
    background-color: transparent;
    border: none;
    font-size: 13px;
    color: var(--text-blue-color);
    font-weight: 400;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.coupon-apply input {
    height: 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: left;
}

.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-light-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: var(--text-black-color);
    font-weight: 500;
    font-size: 22px;
}

.cart-total-two span {
    color: var(--text-black-color);
    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-light-grey-color);
}

.coupon-heading {
    color: var(--text-light-grey-color);
    font-weight: 500;
}

@media (max-width: 576px) {
    .cart-main-block {
        padding: 60px 0 0;
    }

    .cart-add-block {
        margin-bottom: 20px;
    }
}

/* ================================= */
/*======== Checkout Page=====*/
/* ================================= */
.checkout-main-block {
    padding: 60px 0;
}

.checkout-pricelist ul li {
    display: inline-block;
}

.checkout-total {
    font-weight: 500;
}

.checkout-price {
    margin-left: 10px;
    color: var(--text-light-grey-color);
    font-size: 18px;
}

.checkout-percent {
    margin-left: 10px;
    color: var(--text-light-grey-color);
}

.checkout-course-img {
    margin-bottom: 10px;
}

.checkout-course-user {
    color: var(--text-light-grey-color);
    font-size: 11px;
}

.checkout-course-title {
    color: #505763;
    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;
    color: #4C4E56;
}

.creditCardForm label {
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
}

.creditCardForm .heading h1 {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #4C4E56;
}

.creditCardForm .payment {
    float: left;
    font-size: 18px;
    position: relative;
}

.creditCardForm .payment .form-group {
    float: left;
    margin-bottom: 15px;
}

.creditCardForm .payment .form-control {
    line-height: 33px;
    height: auto;
    padding: 0 16px;
    border-radius: 6px;
}

.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: 5px;
    margin-left: 15px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid #ced4da;
}

.transparent {
    opacity: 0.2;
}

@media (max-width: 650px) {
    .creditCardForm .owner,
    .creditCardForm .CVV,
    .creditCardForm #expiration-date,
    .creditCardForm #credit_cards {
        width: 100%;
    }

    .creditCardForm #credit_cards {
        text-align: left;
    }

    .creditCardForm {
        padding: 0;
    }
}

/*stripe payment form end*/

/*rating*/
.star-ratings-css {
    unicode-bidi: bidi-override;
    color: #C5C5C5;
    font-size: 25px;
    height: 25px;
    width: 100px;
    margin: 0 auto;
    position: relative;
    padding: 0;
    text-shadow: 0px 1px 0 #A2A2A2;
}

.star-ratings-css-top {
    color: #E7711B;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

.star-ratings-css-bottom {
    padding: 0;
    display: block;
    z-index: 0;
}

.star-ratings-sprite {
    background: url("../images/rating/star-rating.png") repeat-x;
    font-size: 0;
    height: 12px;
    line-height: 0;
    overflow: hidden;
    text-indent: -999em;
    width: 70px;
    clear: both;
}

.star-ratings-center {
    margin: 0 auto;
    margin-bottom: 10px;
}

.star-ratings-sprite-rating {
    background: url("../images/rating/star-rating.png") repeat-x;
    background-position: 0 100%;
    float: left;
    height: 14px;
    display: block;
}

/*rating end*/

.helpful {
    display: inline-block;
}

/* ============================== */
/*======== NavBar  ========*/
/* ============================== */
.logotext {
    font-size: 21px;
    padding: 8px 0;
}

.nav-wishlist {
    position: relative;
}

.shopping-cart {
    position: relative;
}

.red-menu-badge {
    font-size: 10px;
    min-width: 15px;
    min-height: 15px;
    line-height: 15px;
}

.red-bg-success {
    background: var(--background-red-bg-color);
}

.red-menu-badge {
    position: absolute;
    padding: 0 5px;
    line-height: 1.70;
    width: 16px;
    height: 16px;
    font-weight: 500;
    color: white;
    border-radius: 100%;
    font-size: 10px;
    background: var(--background-red-bg-color);
    box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5);
    display: inline-block;
    text-align: center;
    right: 25px;
    top: 6px;
    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;
    display: none;
/ / Enable this after jquery implementation
}

/
/
Popup Arrow
#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: 188px;
}

#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;
}

#notificationTitle {
    padding: 14px 10px;
    font-size: 13px;
    background-color: var(--background-white-bg-color);
    z-index: 1000;
    border-radius: 5px;
    border-bottom: 1px solid #DDD;
}

#notificationsBody ul li {
    padding: 15px;
    border-bottom: 1px solid #DDD;
}

#notificationFooter {
    background-color: #E9EAED;
    text-align: center;
    font-weight: 500;
    padding: 8px;
    font-size: 15px;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #DDD;
}

.notification-image {
    display: inline-block;
    padding: 0;
    vertical-align: text-bottom;
    margin-left: 10px;
}

.notification-data {
    display: inline-block;
    /*float: right;*/
}

.user-detailss {
    color: #505763;
    font-size: 13px;
}

.heart-category i {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: var(--text-white-color);
}

/*user dropdown*/
.my-container {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: normal;
    height: 100%;
    padding: 5px 0;
}

.my-dropdown {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: var(--background-grey-bg-color);;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    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 {
    text-align: 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: -300px;
    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 {
    -webkit-text-stroke: 0.5px;
    font-size: 15px;
    color: var(--text-red-color);
    margin-left: 20px;
    margin-top: 17px;
    margin-right: 11px;
    float: right;
}

.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;
}

.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: right;
    margin-left: 10px;
}

.purchase-history-course-title {
    font-weight: 500;
    font-size: 16px;
}

.purchase-text {
    font-size: 12px;
}

.invoice-btn .btn-secondary {
    padding: 4px 10px;
    font-size: 12px;
    color: var(--text-blue-color);
    border: 1px solid var(--text-blue-color);
    display: inline-block;
    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 thead th {
    text-align: right;
}

.purchase-table tbody td {
    text-align: right;
}

/*invoice page*/
.view-order {
    padding: 30px 20px;
    background-color: #ECF0F5;
    border-radius: 6px;
    margin-bottom: 20px;
}

.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;
    border-radius: 6px;
}

.dashboard-author-block .author-image {
    margin-bottom: 15px;
}

.dashboard-author-block .author-image img {
    border-radius: 100%;
}

.dashboard-author-block .author-name {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-black-color);
}

.dashboard-items {
    padding: 28px 0 42px;
    border-radius: 6px;
    background-color: var(--background-white-bg-color);
}

.dashboard-items ul li {
    padding: 15px 15px 15px 0;
    border-right: 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-red-color);
    background-color: #F6F7FC;
    border-right: 3px solid var(--text-red-color);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.dashboard-items ul li:hover a {
    color: var(--text-red-color);
}

.dashboard-items ul li.active {
    color: var(--text-red-color);
    background-color: #F6F7FC;
    border-right: 3px solid var(--text-red-color);
}

.dashboard-items ul li.active a {
    color: var(--text-red-color);
}

.dashboard-items ul li i {
    font-size: 20px;
    margin-left: 16px;
    opacity: 0.5;
}

.dashboard-items ul li:hover i {
    color: var(--text-red-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-red-color);
    opacity: 1;
}

.profile-item-block {
    padding: 40px 0;
    background-color: #F6F7FC;
}

.profile-info-block {
    padding: 30px;
    background-color: var(--background-white-bg-color);
    margin-bottom: 41px;
    border-radius: 6px;
}

.profile-info-block .profile-heading {
    font-size: 20px;
    color: var(--text-black-color);
    padding-bottom: 20px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 20px;
}

.profile-info-block .profile-block .form-group label {
    font-size: 16px;
    color: var(--text-black-color);
    margin-bottom: 15px;
}

.profile-info-block .profile-block .form-group .form-control {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-blue-color);
    font-size: 14px;
    border: solid 1px #D5D5D5;
    margin-bottom: 28px;
}

.profile-info-block label {
    font-size: 14px;
}

.profile-info-block .form-control,
.profile-info-block select.form-control:not([size]):not([multiple]) {
    border-radius: 6px;
    font-size: 13px;
    padding: 8px 16px 8px 0;
}

.profile-info-block .form-group
.profile-info-block select.form-control:not([size]):not([multiple]) {
    height: 63px;
}

.profile-info-block .profile-two-block .form-group label {
    font-size: 16px;
    color: var(--text-black-color);
    margin-bottom: 15px;
}

.profile-info-block .profile-two-block .form-group .form-control {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-black-color);
    font-size: 14px;
    border: solid 1px #D5D5D5;
    margin-bottom: 40px;
    padding: 23px 0 103px 30px;
    margin-bottom: 0;
}

.social-profile-block {
    padding: 30px;
    background-color: var(--background-white-bg-color);
    margin-bottom: 62px;
    border-radius: 6px;
}

.social-profile-heading {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-black-color);
    padding-bottom: 20px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 20px;
}

.social-profile-block .social-block .form-group label {
    font-size: 14px;
    color: var(--text-black-color);
    margin-bottom: 15px;
}

.social-profile-block .social-block .form-group .form-control {
    font-family: 'Montserrat', sans-serif;
    color: #717983;
    font-size: 13px;
    border: solid 1px #D5D5D5;
    margin-bottom: 28px;
}

.social-profile-block .form-control,
.social-profile-block select.form-control:not([size]):not([multiple]) {
    border-radius: 6px;
    padding: 8px 16px 8px 0;
}

.social-profile-block .form-group
.social-profile-block select.form-control:not([size]):not([multiple]) {
    height: 63px;
}

.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: 8px 16px;
    font-size: 14px;
    height: inherit ! important;
    border-radius: 6px ! important;
    border: solid 1px #D5D5D5 ! important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5 !important;
    font-size: 13px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: 0 !important;
    right: 0;
    top: 70% !important;
}

.mce-panel {
    border-radius: 6px;
    box-shadow: inherit !important;
}

.mce-top-part::before {
    box-shadow: inherit !important;
}

.mce-stack-layout-item {
    border-radius: 0 0 6px 6px;
}

@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%;
}

.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: 20px auto 50px;
}

.avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 9999999;
    top: 10px;
}

.avatar-edit input {
    display: none;
}

.avatar-edit label {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 100%;
    background-color: var(--background-white-bg-color);
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
    box-shadow: 0px 0 8px rgb(0 0 0 / 10%);
}

.avatar-edit i {
    color: #757575;
    position: absolute;
    top: 9px;
    font-size: 16px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 20px;
}

.profile-block .card-body table {
    margin-bottom: 0;
}

.dropdown-user-circle {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin-left: 5px;
    vertical-align: bottom;
}

.user-detailss {
    display: inline-block;
}

ul {
    margin-bottom: 0;
    padding-right: 0;
}

.nav-search form {
    margin-bottom: 0;
}

.view-img img {
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
    width: 100%;
}

.view-img a img {
    min-height: 200px;
    max-height: 150px;
    border-radius: 6px 6px 0 0;
    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;
    border-radius: 6px;
}

.box-footer i {
    margin-left: 5px;
}

.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-light-grey-color);
    font-size: 10px;
}

/* ================================ */
/*===== Pro Tip =====*/
/* ================================ */
.protip-skin-default--scheme-pro.protip-container {
    height: auto !important;
    background-color: var(--background-white-bg-color) !important;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.6) !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;
}

.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: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-black-color);
    margin-bottom: 15px;
}

.protip-content .description-heading {
    text-transform: capitalize;
}

.protip-content .description-list,
.prime-description-block .description-list {
    margin-bottom: 15px;
    color: var(--text-black-color);
}

.protip-content .description-list li:first-child,
.prime-description-block .description-list li:first-child {
    margin-right: 0;
}

.protip-content .description-list li,
.prime-description-block .description-list li {
    display: inline-block !important;
    float: right;
    color: var(--text-dark-grey-color);
    font-size: 12px;
    margin-right: 13px;
    font-weight: 500;
}

.protip-content .main-des,
.prime-description-block .main-des {
    margin-bottom: 15px;
}

.protip-content .main-des p,
.prime-description-block .main-des p {
    font-size: 12px;
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1.2;
    color: var(--text-black-color);
}

.protip-content .product-main-des p,
.prime-description-block .product-main-des p {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-black-color);
}

.protip-content .main-des a,
.prime-description-block .main-des a {
    margin-top: 3px;
    font-size: 12px;
}

.protip-content .des-btn-block .btn-default,
.des-btn-block .btn-default {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    background-color: #515151;
    font-weight: 500;
    width: 100%;
    text-align: left;
}

.des-btn-block.des-in-list .btn-default {
    width: auto;
    display: inline-block;
}

.des-btn-block.des-in-list a {
    display: inline-block;
}

.des-btn-block.des-in-list a.btn-play {
    margin-right: 20px !important;
}

.des-btn-block.des-in-list a.btn-default {
    padding: 11px 19px;
    width: auto !important;
    margin: 5px 3px 0;
    font-size: 14px;
}

.btn-sm-play,
.des-in-list.des-btn-block a.btn-play {
    margin: 10px 0;
    font-size: 14px;
}

.btn-sm-play,
.des-in-list.des-btn-block a.btn-default {
    width: 20%;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

a.btn-sm-play,
.des-in-list.des-btn-block a.btn-play,
.protip-content .des-btn-block a.btn-play {
    background-color: transparent;
    text-align: left;
    margin-bottom: 10px;
}

.btn-sm-play:hover,
.des-in-list.des-btn-block a.btn-play:hover,
.protip-content .des-btn-block a.btn-play:hover {
    background-color: transparent;
}

.btn-sm-play .play-btn-icon,
.des-in-list.des-btn-block .btn-play .play-btn-icon,
.protip-content .des-btn-block .btn-play .play-btn-icon {
    width: 46px;
    height: 46px;
    font-size: 14px;
}

.des-in-list.des-btn-block .btn-play .play-text,
.protip-content .des-btn-block .btn-play .play-text {
    font-size: 16px;
}

.video-player {
    z-index: -9;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--background-black-bg-color);
}

.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 var(--text-black-color) !important;
    font-size: 13px !important;
}

.vjs-load-progress,
.vjs-progress-holder.vjs-slider.vjs-slider-horizontal,
.vjs-play-progress.vjs-slider-bar {
    border-radius: 4px !important;
}

.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item:hover,
.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item.vjs-selected {
    background-color: #48A3C6 !important;
    color: var(--text-white-color) !important;
}

.preview-player-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 70px 0;
}

.video-js.episodes-js,
.playlist-container {
    position: relative;
    min-width: 300px;
    min-height: 150px;
    height: 100%;
}

.video-js.episodes-js {
    height: 550px;
    flex: 3 1 70%;
}

.protip-img {
    margin-bottom: 10px;
}

.about-home-btn form {
    margin-bottom: 0;
}

.protip-btn .btn-primary {
    padding: 10px 0;
    width: 100%;
    border-radius: 1px;
    font-weight: 200;
    font-size: 15px;
}

.protip-btn .btn-secondary {
    padding: 10px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 200;
    font-size: 15px;
    background-color: var(--background-blue-bg-color);
    color: var(--text-white-color);
}

.protip-btn .btn-secondary:hover {
    background-color: var(--text-dark-blue-color);
    border: 1px solid #003845;
    color: var(--text-white-color);
}

.protip-btn i {
    margin-left: 10px;
}

.protip-wishlist ul li {
    /*display: inline-block;*/
    padding: 10px 10px 20px 5px;
}

.protip-wishlist ul li a {
    color: var(--text-white-color);
    font-size: 16px;
}

.protip-wishlist ul li i {
    font-size: 25px;
    vertical-align: bottom;
}

.protip-one i {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: var(--text-black-color);
}

.protip-one i:hover {
    color: var(--text-red-color);
    background-color: transparent;
}

.protip-wishlist ul li {
    /*display: inline-block;*/
    padding: 10px 0;
}

.protip-wishlist ul li a {
    color: var(--text-red-color);
    font-size: 16px;
}

.protip-wishlist ul li i {
    font-size: 25px;
    vertical-align: bottom;
}

.protip-wishlist span:hover {
    color: #CACBCC;
}

.protip-wish-btn i {
    -webkit-text-stroke: 1px var(--text-red-color);
    color: transparent;
    cursor: pointer;
}

.protip-wish-btn i:hover {
    color: var(--text-red-color);
}

.protip-wish-btn-two {
    color: var(--text-red-color);
    cursor: pointer;
}

.protip-wish-btn-two i {
    color: var(--text-red-color);
}

.protip-wish-btn i:hover {
    color: var(--text-red-color);
}

.immi-slider-block .protip-wish-btn i {
    opacity: 0;
}

.immi-slider-block:hover .protip-wish-btn i {
    opacity: 1;
}

.genre-slide-image .protip-wish-btn i {
    opacity: 0;
}

.genre-slide-image:hover .protip-wish-btn i {
    opacity: 1
}

input.razorpay-payment-button {
    color: var(--text-white-color);
    background-color: var(--background-red-bg-color);
    padding: 10px 80px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.no-result-block {
    padding: 50px 0;
    color: var(--text-black-color);;
    background-color: var(--background-light-grey-bg-color);
}

.no-result-courses {
    font-size: 16px;
}

.no-result-courses a {
    font-size: 16px;
}

.cart-no-result {
    -webkit-box-shadow: 0 0 2px #DEDFE0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
    margin-bottom: 30px;
    padding: 10px;
    text-align: center;
}

.cart-no-result i {
    margin-bottom: 20px;
    font-size: 120px;
    color: #e8e9eb;
}

.invoice-logo {
    width: 150px;
}

.purchase-history-course-img {
    width: 100px;
}

/*.view-heading {
  height: 45px;
}*/
.notification-image img {
    width: 50px;
    height: 40px;
}

.unread-notification {
    background-color: #E8E9EB;
}

.update-password label {
    font-size: 16px;
}

.update-password input {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.payment-gateways .panel-title img {
    height: 25px;
    width: 80px;
    margin-right: 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: 120px;
}

.card-body .class-name {
    width: 600px;
}

.card-body .class-size {
    width: 150px;
}

.business-home-slider-img img {
    width: 480px;
    height: 240px;
}

.rating .pull-left p {
    margin-bottom: 0;
}

.categories-popularity-dtl .rating {
    margin-bottom: 0;
}

.update-password .box1 {
    font-size: 20px;
}

.faq-detail-main-block {
    padding: 40px 30px;
    background-color: #F6F7FC;
}

.privacy-policy-block {
    padding: 40px 30px;
    background-color: #F6F7FC;
}

/*player css*/
.player-course-chapter {
    background-color: #999999;
    padding: 0px;
    margin: 0px;
}

.player-course-chapter-list {
    position: relative;
    left: 1000px;
    top: 5000px;
}

/* end player css*/

.alert-success {
    text-align: center;
    z-index: 1;
    margin-top: 5px;
}

.alert-danger {
    text-align: center;
    z-index: 1;
    margin-top: 5px;
}

.class-icon {
    width: 50px;
}

.google a.btn.btn-white {
    background-color: #DB4A39;
    color: var(--text-white-color);
    box-shadow: none;
}

.cart-course-detail {
    margin-right: 15px;
}

.list-group-item b {
    font-weight: 600;
    font-size: 14px;
}

.available-coupon ul li {
    font-size: 12px;
    margin-bottom: 10px;
    border: 1px dashed var(--text-blue-color);
    padding: 7px;
    text-align: center;
}

.class-nav-block {
    padding: 15px 10px 10px;
    background-color: var(--background-black-bg-color);
    color: var(--text-white-color);
}

.class-nav-heading {
    font-size: 20px;
    margin-bottom: 10px;
}

.class-button {
    margin-top: 5px;
    text-align: left;
    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: right;
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.learning-contact-block .section {
    display: inline-block;
    float: right;
    margin-left: 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;
}

.modal-header .close {
    margin: -1rem -1rem -1rem 0;
}

@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: #505763;
}

.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: #505763;
    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: #505763;
}

.topic-detail {
    margin-top: 13px;
    list-style-type: none;
    -webkit-padding-start: 0;
}

.topic-detail li {
    margin-bottom: 6px;
    position: relative;
    margin-left: -15px;
}

.topic-detail li .fa {
    position: absolute;
    left: 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-left: 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;
    }
}

#cboxTitle {
    display: none !important;
}

.download-logo {
    margin-top: 50px;
    width: 100px;
}

.quiz-nav-bar-block {
    background-color: 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;
}

#cssmenu ul ul ul {
    margin-right: 100%;
}

#cssmenu ul ul {
    left: 99999999999px;
}

.cirtificate-border-one {
    font-family: "Times New Roman", Times, serif;
    border: 15px groove var(--text-blue-color);
    padding: 8px;
    /* background-color: var(--background-white-bg-color); */

}

.cirtificate-border-two {
    border: 5px double var(--text-blue-color);
    padding: 10px;
}

.cirtificate-heading {
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 50px;
}

.cirtificate-detail {
    margin-bottom: 50px;
    font-size: 30px;
}

.cirtificate-instructor {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    border-bottom: 1px solid var(--text-black-color);
    margin: 0 auto;
    text-align: center;
}

.cirtificate-logo img {
    width: 150px;

}

.testimonial-main-block .owl-carousel .owl-nav button.owl-prev,
.testimonial-main-block .owl-carousel .owl-nav button.owl-next {
    top: 50%;
}

.testimonial-main-block .owl-carousel .owl-dots.disabled,
.testimonial-main-block .owl-carousel .owl-nav.disabled {
    display: block;
}

.protip-whatlearn ul li {
    margin-bottom: 10px;
    margin-left: 20px;
    color: var(--text-light-grey-color);
    font-size: 13px;
}

.protip-whatlearn i {
    margin-right: 20px;
    color: var(--text-light-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-light-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;
}

#cssmenu.small-screen #menu-button:before {
    left: 17px !important;
    right: unset;
}

#cssmenu.small-screen #menu-button:after {
    left: 17px !important;
    right: unset;
}

#cssmenu > ul > li > a {
    text-align: left;
}

.certificate-button .btn-secondary {
    padding: 8px;
    border-radius: 0;
    background-color: transparent;
    color: #95979a;
    border: 1px solid #95979a;
}

.certificate-button .btn-secondary:hover {
    border-radius: 0;
    color: var(--text-white-color);
    border: 1px solid #FFF;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #95979a;
    background-color: #262424;
    border-color: #95979a;
    border-radius: 0;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.certificate-button .dropdown-menu {
    padding: 0 0;
}

.certificate-button .about-home-btn .btn-secondary {
    font-size: 14px;
    border: 1px solid var(--text-blue-color);
}

.certificate-button .about-home-btn .btn-secondary {
    font-size: 14px;
    border: 1px solid #003845;
}

/* ============================== */
/*===== 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: 20px;
}

.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%;
    width: 250px;
    height: 250px;
}

.instructor-profile .instructor-link ul {
    text-align: center;
}

.instructor-profile .instructor-link ul li {
    text-align: center;
    border: 1px solid #DCDACB;
    border-radius: 100%;
    padding: 12px 0;
    display: inline-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;
    width: 50px;
    height: 50px;
}

.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%;
    }
}

/* ============================== */
/*===== Promo Bar  =====*/
/* ============================== */
#promo-outer {
    width: 100%;
    height: auto;
    background: var(--background-blue-bg-color);
    box-shadow: 0 5px 10px gray(#505050, 15%);
    display: block;
}

#promo-inner {
    color: var(--text-white-color);
    text-align: center;
    line-height: 25px;
    padding: 10px 5px 15px;
}

#promo-inner a {
    color: var(--text-white-color);
    text-align: center;
    text-decoration: underline;
}

#close {
    float: left;
    padding-left: 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-tab-content {
    text-align: -webkit-auto;
}

.koh-faqs-page-title {
    font-size: 30px;
    color: #04202E;
    font-weight: 700;
}

.koh-faq-question-span {
    font-size: 14px !important;
    color: var(--text-blue-color) !important;
    display: inline-block;
}

.koh-faq-answer {
    color: var(--text-black-color);
    font-weight: 400;
    display: none;
}

.koh-tab-content .icon {
    font-size: 10px;
    padding-right: 5px;
}

.koh-tab-content .fa {
    font-size: 14px;
    color: var(--text-blue-color) !important;
    margin-left: 7px;
    vertical-align: top;
}

.koh-tab-content .fa.active {
    transform: rotateZ(180deg);
    vertical-align: text-bottom;
}

.nav-bar-main-block .logo .img-fluid {
    max-width: 257%;
    height: 45px;
    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;
    left: 15px;
    color: var(--text-white-color);
    opacity: 0.7;
    padding: 10px 1px;
    font-size: 27px;
    z-index: 9999;
}

.appointment-main-block {
    padding: 40px 0;
}

.appointment-main-block ul li a {
    font-size: 13px;
    color: var(--text-blue-color);
    font-weight: 400;
}

.categories-dtl {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.categories-heading a {
    margin-right: 10px;
}

.categories-subheading a {
    font-weight: 800;
    font-size: 20px;
}

.programmer {
    font-size: 15px;
    font-weight: 600;
}

/*-------------------------------*/
/*     side navigation humburger   */
/*-------------------------------*/
/*-------------------------------*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999;
    top: 0;
    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 20px 5px 8px;
    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;
    left: 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"] {
     left: 57px;
     text-align: left;
   }*/
    #find input[type="find"] {
        text-align: center;
        left: 0;
        right: 0;
        width: 100%;
    }

    .hamburger {
        left: 20px;
        margin-left: 20px;
        /*
    position: absolute;*/
    }

    .shopping-cart {
        float: left;
        left: -8px;
        display: inline-flex;
    }

    .shopping-cart .red-menu-badge {
        left: 27px;
    }

    .nav-search.nav-wishlist {
        left: -10px;
        top: -5px;
        float: left;
        display: inline-flex;
    }

    .nav-wishlist {
        left: -6px;
        top: -3px;
        float: left;
        display: inline-flex;
    }

    #notification_li span {
        left: 29px;
        top: 9px;
    }

    #notificationContainer {
        top: 56px;
        right: -144px;
        width: 290px;
    }

    #notificationContainerr {
        top: 56px;
        right: -160px;
        width: 290px;
    }

    #notificationContainer:before {
        border-color: transparent transparent var(--text-black-color);
        margin-right: 159px;
    }

    #notificationContainerr:before {
        border-color: transparent transparent var(--text-black-color);
        margin-right: 174px;
    }

    /* ...................    */
    .fullscreen-search-block .btn-secondary,
    .fullscreen-search-block .btn-primary {
        text-align: right;
        background: transparent;
        border: 1px solid transparent;
        color: var(--text-blue-color);
    }

    .fullscreen-search-block .btn-secondary:hover,
    .fullscreen-search-block .btn-primary:hover {
        color: var(--text-dark-blue-color);
        background: transparent;
        border: 1px solid transparent;
    }

    .sub-cat {
        padding: 5px 20px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .sub-cat i {
        float: right;
    }

    .learning-business {
        margin-bottom: 0;
    }

    .learning-business a {
        text-align: left;
    }

    .notification-after {
        right: 109px;
    }

    .my-container {
        justify-content: left;
    }

    .learning-business .btn-link {
        padding: 8px 18px 5px;
        text-align: right;
    }

    .shopping-cart i {
        padding: 6px 9px 7px 16px;
    }

    .my-dropdown {
        width: auto;
        margin-right: 15px;
    }

    #notificationTitle {
        padding: 14px 15px 14px 0;
    }

    #notificationFooter {
        text-align: right;
        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;
        vertical-align: bottom;
    }

    .fullscreen-search-block .logo .img-fluid {
        margin-top: -14px;
    }

    .wrapper .panel-title a[aria-expanded="false"] i {
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
        float: left;
    }

    .wrapper .panel-title a[aria-expanded="true"] i {
        float: left;
        margin-left: 0;
        margin-right: 10px;
    }

    .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%;
    }
}

@media (max-width: 576px) {
    .width-30 {
        width: 30%;
    }
}

.wrapper {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 3px;
}

.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;
}

.course-cirtificate .rate,
.about-instructor .rate,
.about-product-main-block .student-view-block .rate {
    right: 22px;
}

.about-instructor .rate ul li {
    margin-bottom: 0;
}

.chapter-total-time {
    text-align: left;
}

.immi-slider-block {
    margin-right: 5px;
}

/*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 {
    border: 1px solid #FFF;
    border-radius: 6px;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    margin-bottom: 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;
}

.prod.grid-view .item h3 {
    color: #615E5E;
    margin: 0;
}

.prod.grid-view .item .date {
    color: #888;
    font-size: 12px;
    padding: 2px 0;
    display: block
}

/* .prod.grid-view .item img{
  background-color: var(--background-white-bg-color);
  padding: 2px;
  height: 150px;
  width: 100%;
} */
.prod.grid-view p {
    color: #333;
}

.prod.grid-view .best-seller-one {
    position: relative;
    top: -180px;
}

/*start css toggle products section products list-view*/
.prod.list-view .item {
    background-color: var(--background-white-bg-color);
    position: relative;
    overflow: hidden;
    min-height: 100px;
    margin: 5px 5px 20px 5px;
    box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
}

.prod.list-view .item h3 {
    color: #615E5E;
    margin: 0;
    position: absolute;
    left: 220px;
}

.prod.list-view .item .date {
    color: #888;
    font-size: 12px;
    padding: 2px 0;
    position: absolute;
    left: 220px;
    bottom: 70px;
}

.prod.list-view .item img {
    background-color: var(--background-white-bg-color);
    width: 200px;
    height: 150px;
}

.prod.list-view p {
    color: #333;
    padding: 10px 0;
    margin: 0;
    left: 220px;
    top: 40px;
}

.prod.list-view .view-heading {
    color: #333;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    left: 220px;
    top: 10px;
}

.prod.list-view .categories-popularity-dtl {
    color: #333;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    left: 220px;
    top: 30px;
}

.prod.list-view .rate-grid {
    position: absolute;
    padding: 10px 0;
    margin: 0;
    left: 220px;
    top: 100px;
}

.prod.list-view .rate-grid ul {
    display: inline-block;
}

@media (max-width: 576px) {
    .prod.grid-view .item {
        width: 100%;
    }
}

@media (min-width: 567px) and (max-width: 992px) {
    .prod.grid-view .item {
        width: 47%;
    }
}

.sidebar-nav-icon ul a li {
    color: var(--text-light-grey-color);
}

.sidebar-nav-icon ul a li i {
    margin-right: 8px;
}

.img-wishlist {
    position: absolute;
    top: 0;
    left: 0;
}

.img-wishlist .protip-wishlist ul li {
    padding: 6px 0;
}

.about-home-product .nav-search .form-control {
    padding: 13px 0 13px 21px;
    color: var(--text-black-color);
    border-radius: 0;
    border: none;
    background-color: var(--background-grey-bg-color);;
    display: inline-block;
    float: left;
    width: 650px;
}

.about-home-product .nav-search {
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .about-home-product .nav-search .form-control {
        width: 200px;
    }

    .instructor-main-block {
        padding: 30px 0;
    }
}

@media (min-width: 567px) and (max-width: 992px) {
    .about-home-product .nav-search .form-control {
        width: 350px;
    }

    .instructor-main-block {
        padding: 30px 0;
    }
}

.review-table .table tr {
    border: none;
}

.profile-block .second-accordion .card-header button.btn {
    padding: 0 5px !important;
}

.chapter-total-time {
    text-align: right;
    font-size: 13px;
}

.about-home-product .nav-search .form-control {
    padding: 13px 21px 13px 0;
    color: var(--text-black-color);
    border-radius: 0;
    border: none;
    background-color: var(--background-grey-bg-color);;
    display: inline-block;
    float: right;
    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-color: var(--background-blue-bg-color);
    color: var(--text-white-color);
}

/* ====================================== */
/*======== Style changes  ========*/
/* ===================================== */
#find input[type="find"] {
    left: 0;
    right: 0;
}

#find .btn {
    background: var(--background-red-bg-color);
    border: 1px solid var(--text-red-color);
    color: var(--text-white-color);
    padding: 15px 30px;
}

.categories-tab-dtl:hover {
    background: var(--background-mehroon-bg-color);
}

#find .btn:hover {
    background: var(--background-mehroon-bg-color);
    border: 1px solid #992337;
}

.categories-tab-block i {
    -webkit-text-stroke: 1px var(--text-white-color);
}

.categories-tab-block a {
    color: var(--text-white-color);
}

.view-button .btn-secondary {
    padding: 2px 18px;
}

.categories-tab-main-block {
    background: var(--linear-gradient-reverse-bg-color);
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    border-radius: 100%;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 30px;
}

.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-right: -15px;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -21px;
}

.learning-work-icon {
    margin-bottom: 10px;
}

.footer-main-block {
    position: relative;
    background-color: 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 {
    font-weight: 600;
}

.together-img .heart {
    opacity: 0;
    -webkit-text-stroke: 2px var(--text-red-color);
}

.together-img .heart i {
    color: transparent;
    font-size: 25px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.together-img .heart:hover i {
    color: var(--text-red-color);
}

.together-img:hover .heart {
    opacity: 1;
}

.testimonial-main-block {
    background-color: var(--background-white-bg-color);
}

.testimonial-block {
    background-color: #FFF;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border: 2px solid transparent;
    border-radius: 6px;
    margin-top: 70px;
    margin-bottom: 20px;
    margin-left: 20px;
    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;
}

.testimonial-block p {
    font-size: 12px;
    margin-bottom: 5px;
    text-align: right;
    color: var(--text-dark-grey-color);
}

.product-learn-dtl [class^="flaticon-"]:before,
.product-learn-dtl [class*=" flaticon-"]:before,
.product-learn-dtl [class^="flaticon-"]:after,
.product-learn-dtl [class*=" flaticon-"]:after {
    font-size: 16px;
    margin-left: 0;
    margin-right: -5px;
}

.blog-slider-block {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    margin: 80px 20px 30px 20px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.blog-slider-block:hover {
    box-shadow: 0 4px 20px #DEDFE0;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-dropdown .a {
    color: var(--text-white-color);
    border: none;
}

.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;
}

.dropdown-menu form .btn-danger {
    color: var(--text-light-grey-color);
    width: 100%;
    background-color: transparent !important;
    border: none;
}

button.btn.btn-danger.btn-sm:active,
button.btn.btn-danger.btn-sm:focus {
    color: var(--text-black-color) !important;
    outline: 0px auto -webkit-focus-ring-color !important;
    box-shadow: none;
}

.image-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -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;
}

.image-overlay {
    opacity: 0;
    position: absolute;
    color: var(--text-white-color);
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    border-radius: 6px;
    text-align: center;
    -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;
    font-size: 14px;
}

.image-overlay span {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}

.categories-img-count {
    font-size: 13px;
    color: #fff;
    height: 100%;
    left: 0%;
    text-align: center;
    position: absolute;
    transition: bottom 0.5s ease;
    width: 100%;
    bottom: -50px;
    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;
}

.image-overlay {
    opacity: 1;
}

.image-overlay i {
    margin-left: 10px;
}

.image-container a img {
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
}

@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;
}

.fa.fa-chevron-right.float-rgt {
    transform: rotateZ(180deg);
}

.rate ul li i {
    float: none;
}

.about-home-main-block .row {
    width: 100%;
    margin-left: 0px
}

.refund-policy-block .btn-secondary {
    padding: 0;
    background-color: transparent;
    color: var(--text-dark-grey-color);
    font-size: 15px;
    border: 1px solid transparent;
}

.one-topic-detail {
    width: 200px;
}

.two-topic-detail {
    text-align: right;
    margin-right: 10px;
}

.user-bank-block {
    padding: 0px 0;
}

/*.user-bank-button {
  padding: 20px 0px 20px 20px;
}*/
.user-bank-button .btn-primary {
    padding: 7px 25px;
}

.category-filters .card {
    margin-bottom: 10px;
    border: none;
}

.category-filters .card-title {
    font-weight: 500;
    font-size: 15px;
}

.categories-content-one .form-check-label {
    font-size: 15px;
}

.category-filters .card-header {
    background-color: var(--background-light-grey-bg-color);
}

.confiramtion-logo {
    width: 150px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.confirmation-title {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 35px;
    color: #339959;
}

.confirmation-block {
    background-color: aliceblue;

    padding: 50px 0;
    text-align: center;
}

.confiramtion-border {
    border: 2px solid #686F7A;
    padding: 50px 0;
}

.confirmation-block i {
    font-size: 50px;
    margin-bottom: 10px;
    color: #339959;
}

.wrapper-two .panel-title a[aria-expanded="false"]:after {
    position: absolute;
    content: "\f107";
    font-family: fontawesome;
    left: 15px;
    color: var(--text-dark-grey-color);
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.wrapper-two .panel-title a[aria-expanded="true"]:after {
    position: absolute;
    content: "\f106";
    font-family: fontawesome;
    left: 15px;
    color: var(--text-dark-grey-color);
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.wrapper-two a {
    font-weight: 400 !important;
    font-size: 15px !important;
    color: var(--text-dark-grey-color) !important;
}

.wrapper-two .sub-cat {
    font-weight: 400 !important;
    font-size: 12px !important;
    color: var(--text-dark-grey-color) !important;
    padding: 5px 20px;
}

.subcate-collapse {
    margin-left: 15px;
}

.subcate-collapse i {
    font-size: 14px;
}

.subcate-collapse .sub-cate {
    font-size: 14px;
}

.limit-dropdown .dropdown-menu {
    min-width: 3rem !important;
    width: 20%;
}

.learning-work-block {
    color: var(--text-white-color);
}

.home-dtl {
    color: var(--text-white-color);
}

.business-home-main-block h1 {
    color: var(--text-white-color) !important;
    position: relative;
}

.learning-courses {
    color: var(--text-white-color) !important;
}

.refund-policy-block .btn-secondary {
    padding: 0;
    background-color: transparent;
    color: var(--text-dark-grey-color);
    font-size: 15px;
    border: 1px solid transparent;
}

.owl-carousel .owl-stage-outer {
    width: 100%;
}

.g-recaptcha {
    display: inline-block;
}

.nopadding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.search {
    position: relative;
    float: right;
    width: 50px;
    height: 0;
    z-index: 100;
}

.search-input-wrap {
    position: absolute;
    height: 60px;
    width: 0;
    -webkit-transition: width 200ms;
    -moz-transition: width 200ms;
    transition: width 200ms;

}

.search.search-open .search-input-wrap {
    transition: all 0.4s ease-out;
}

input[type="submit"].search-submit {
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
}

.icon {
    cursor: pointer;
    float: right;
    padding: 0 5px 15px;
    border: 1px solid transparent;
}

.fa.fa-search {
    font-size: 20px;
    color: var(--text-red-color);
    padding: 14px 15px 12px;
    border: 1px solid transparent;
    z-index: 90;
}

.search.search-open .icon {
    background: #F9F9F9;
    border: 1px solid rgba(20, 23, 28, 0.05);
    padding: 0 5px 15px;
}

.search.search-open .fa.fa-search {
    padding: 14px 15px 12px;
    color: var(--text-red-color);
    pointer-events: none;
    z-index: 1;
}

input[type="submit"].search-submit {
    background: transparent;
    color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    border-radius: 0;
    outline: none;
    z-index: -1;
}

.search.search-open input[type="submit"].search-submit {
    z-index: 90;
}

input[type="text"].search-input {
    border: none;
    outline: none;
    opacity: 0;
    font: 18px;
    background: #F9F9F9;
    height: 50px;
    margin: 0;
    border-right: 2px solid var(--text-red-color);
    width: 0px;
}

.search.search-open input[type="text"].search-input {
    opacity: 1;
    width: 277px;
    font: 18px;
    background: #F9F9F9;
    height: 50px;
    margin: 0;
    padding: 2px 15px;
    margin-right: -277px;
    outline: none;
}

.aamar-pay-btn .btn-primary {
    padding: 10px 80px;
}

#bar-fixed.stickIt {
    position: fixed;
    top: -40px;
    width: 370px;
    z-index: 999;
}

.instructor-block-ratings ul li {
    display: inline-block;
    margin-bottom: 20px;
}

.instructor-block-ratings ul li i {
    color: var(--text-red-color);
}

.instructor-block p {
    margin-bottom: 0;
}

.about-instructor-block .instructor-img img {
    margin-bottom: 10px;
}

.instructor-img ul li {
    text-align: center;
}

.instructor-img ul li span {
    font-weight: 600;
}

.home-btn {
    padding: 5px 10px;
    font-size: 13px;
}

.home-search .search {
    width: 100%;
    position: relative;
    display: flex;
}

.home-search .searchTerm {
    width: 50%;
    border: 2px solid #f44a4a;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-left: none;
    padding: 5px 20px;
    height: 45px;
    border-radius: 30px;
    outline: none;
    color: #9DBFAF;
    position: relative;
}

.home-search .searchTerm:focus {
    color: #00B4CC;
}

.home-search .searchButton {
    width: 10%;
    height: 45px;
    border: 1px solid var(--text-red-color);
    background: var(--background-red-bg-color);
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #FFF;
    position: absolute;
    right: 40%;
}

.careers-block {
    padding: 50px 0;
}

@media (max-width: 767px) {
    .nav-bar-main-block-one {
        padding: 20px 0;
    }

    .nav-bar-main-block-one .logo {
        margin-left: 0 !important;
    }

    .nav-bar-main-block-one .logo .img-fluid {
        margin-top: 0 !important;
    }

    .logo {
        margin-bottom: 0 !important;
        text-align: right !important;
    }

    .nav-bar-btn .btn-secondary {
        margin: 0;
        padding: 7px 0;
        font-size: 12px;
    }

    .nav-bar-main-block .logo .img-fluid {
        max-width: 100px;
        margin-top: -15px;
    }

    .Login-btn .btn-primary {
        padding: 8px 20px;
        font-size: 12px;
    }

    .Login-btn .btn-secondary {
        padding: 8px 20px;
        font-size: 12px;
    }

    .Login-btn {
        margin-bottom: 0 !important;
    }

    .nav-bar-btn {
        margin-bottom: 0 !important;
    }

    .signup-block-main-block {
        padding: 40px 0 150px;
    }

    .signup-form i {
        top: 14px;
    }

    #bar-fixed.stickIt {
        position: relative;
        width: inherit;
    }

    .home-search .searchTerm {
        width: 100%;
    }

    .learning-work-icon i {
        margin-left: 0;
    }

    .learning-courses .nav-link.active {
        padding: 10px;
    }

    .learning-courses .nav-link {
        padding: 10px;
    }

    .view-dtl .rate {
        right: 15px;
    }

    .categories-heading {
        margin-bottom: 40px;
    }

    .student-heading {
        margin-bottom: 40px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 15px;
    }

    .footer-dropdown {
        text-align: center;
    }

    .about-home-icon ul li {
        padding: 15px 0;
    }

    .business-home-slider-img {
        margin-right: 0;
    }

    .business-home-slider-main-block .owl-carousel .owl-item .img-fluid {
        height: auto;
        width: 100%;
    }

    .categories-popularity-main-block.category-filters .text-right {
        text-align: left !important;
        margin-bottom: 20px;
    }

    .categories-popularity-main-block.category-filters {
        padding: 30px 0;
    }

    .featured-review-img-dtl {
        padding: 0;
    }

    .review-img-block {
        margin-bottom: 20px;
    }

    .blog-block-img {
        margin-right: 0;
    }

    .about-learning-blog-dtl {
        padding: 15px;
    }

    .contact-us-main-block img {
        margin-bottom: 20px;
    }

    .careers-heading {
        font-size: 42px;
    }

    .careers-video-main-block {
        top: 89%;
    }

    .careers-learn-video {
        padding: 0;
    }

    .careers-learn-block {
        padding: 20px;
    }

    .careers-learn-video-one {
        padding: 40px 0;
    }

    .careers-learn-heading {
        font-size: 34px;
        text-align: center;
    }

    .careers-benefits-heading {
        font-size: 40px;
    }

    .careers-benefits-dtl-block {
        height: inherit;
    }

    .join-team-main-block {
        padding: 90px 0;
    }

    .join-team-main-block .faq-block {
        padding: 0;
    }

    .help-search i {
        top: 10%;
    }

    .help-tab {
        height: inherit;
    }

    .help-main-block .btn-primary {
        height: inherit;
    }

    .blog-main-block .owl-carousel .owl-item img {
        margin-right: 0;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .image-overlay {
        line-height: 230px;
    }

    #about-bar-fixed {
        display: none;
    }

    #about-bar-fixed.stickIt {
        display: none !important;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .signup-block-main-block {
        padding: 60px 0 120px;
    }
}

.faq-block .second-accordion .card-body .btn-light {
    color: #FFF !important;
}

#about-bar-fixed {
    display: none;
}

#about-bar-fixed.stickIt {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(41, 48, 59, .95);
    padding: 10px 0;
    width: 100%;
}

#about-bar-fixed.stickIt .about-home-heading {
    font-size: 24px;
    margin-bottom: 5px;
}

#about-bar-fixed ul li {
    display: inline-block;
    margin-right: 10px;
    color: #FFF;
}

@media (min-width: 767px) and (max-width: 992px) {
    #bar-fixed.stickIt {
        position: relative;
        width: inherit;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #bar-fixed.stickIt {
        width: 310px;
    }
}

.modal {
    z-index: 1050 !important;
}

.meeting-icon {
    opacity: 0;
    position: absolute;
    text-align: center;
    font-size: 10px;
    top: 6px;
    bottom: 0;
    left: 0;
    /*background-color: #F4C150;*/
    width: 40px;
    height: 15px;
    z-index: 9;
    border-radius: 0 10px 10px 0;
    text-transform: capitalize;
    right: 6px;
}

.vacation-days {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}

.vacation-days .btn.btn-secondary {
    padding: 0;
    background-color: transparent !important;
    border: none;
    color: #FFF !important;
}

.vacation-days i {
    margin-top: 0;
}

.growth-main-block {
    padding: 100px 0;
}

.engagement-bar {
    padding: 20px 20px 0;
    background-color: var(--background-black-bg-color);
    height: 320px;
}

.growth-block {
    background-color: var(--text-light-grey-color);
    height: 320px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .engagement-bar {
        height: 370px;
    }

    .growth-block {
        height: 370px;
    }
}

.engagement-heading {
    color: #FFF;
    margin-bottom: 0;
}

.wrapper-heading {
    color: var(--text-light-grey-color);
}

.progress-heading {
    color: var(--text-light-grey-color);
    text-transform: uppercase;
    font-size: 13px;
}

.profile-block .profile-block-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: -20%;
}

.profile-block-heading {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding: 30px 0 20px;
    margin: 0 80px 20px;
    font-size: 22px;
}

.profile-block ul li {
    color: #FFF;
    font-size: 13px;
    margin-bottom: 10px;
}

.profile-block ul li img {
    margin-right: 10px;
}

.profile-dtl-block {
    padding: 100px 0 99px;
}

.profile-dtl-block-heading {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.profile-dtl-block img {
    margin-bottom: 20px;
}

.profile-dtl-block p {
    color: #FFF;
    font-size: 13px;
}

.wrapper {
    display: -ms-flexbox;
    display: box;
    display: flex;
    -o-box-align: center;
    align-items: center;
    -o-box-pack: center;
    justify-content: center;
    -o-box-orient: vertical;
    flex-direction: column;
}

.wrapper .progress {
    margin-bottom: 0;
}

.wrapper .progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.green .progress {
    position: relative;
    border-radius: 50%;
}

.green .progress {
    width: 100px;
    height: 100px;
    border: 4px solid #EEE;
    background: none;
}

.green .progress {
    transition: all 1s ease;
}

.green .progress .inner {
    position: absolute;
    overflow: hidden;
    z-index: 2;
    border-radius: 50%;
}

.green .progress .inner {
    width: 110px;
    height: 110px;
}

.green .progress .inner {
    transition: all 1s ease;
}

.green .progress .inner .water {
    position: absolute;
    z-index: 1;
    width: 200%;
    height: 200%;
    left: -50%;
    border-radius: 40%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: spin;
    animation-name: spin;
}

.green .progress .inner .water {
    background: rgba(83, 252, 83, 0.5);
}

.green .progress .inner .water {
    transition: all 1s ease;
}

.green .progress .inner .water {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
}

.green .progress .inner .glare {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 0;
    height: 0;
    transform: rotate(45deg);
    border-radius: 50%;
}

.green .progress .inner .glare {
    background-color: rgba(255, 255, 255, 0.15);
}

.green .progress .inner .glare {
    transition: all 1s ease;
}

.green .progress .inner .percent {
    position: absolute;
    top: 0;
    left: 9px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.green .progress .inner .percent {
    line-height: 95px;
    font-size: 22px;
    font-weight: 500;
}

.green .progress .inner .percent {
    color: #EEE;
}

.green .progress .inner .percent {
    transition: all 1s ease;
}

.wrapper-heading {
    font-size: 16px;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.leader-progress-bar .progress {
    width: 70px;
    height: 70px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.leader-progress-bar .progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.leader-progress-bar .progress > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.leader-progress-bar .progress .progress-left {
    left: 0;
}

.leader-progress-bar .progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 4px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: #ffb43e;
}

.leader-progress-bar .progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 75px;
    border-bottom-right-radius: 75px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.leader-progress-bar .progress .progress-right {
    right: 0;
}

.leader-progress-bar .progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.leader-progress-bar .progress .progress-value {
    display: flex;
    border-radius: 50%;
    margin: -2px auto 0;
    font-size: 16px;
    color: #EEE;
    text-align: center;
    line-height: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 300;
}

.leader-progress-bar .progress .progress-value div {
    margin-top: 10px;
}

.leader-progress-bar .progress .progress-value span {
    font-size: 12px;
    text-transform: uppercase;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(36);
        transform: rotate(36deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(72);
        transform: rotate(72deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(108);
        transform: rotate(108deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(144);
        transform: rotate(144deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180);
        transform: rotate(180deg);
    }
}

.leader-progress-bar .progress {
    margin-bottom: 1em;
}

.profile-dtl-block i {
    margin-bottom: 20px;
    font-size: 45px;
    color: #FFF;
}

.growth-main-block .container-fluid {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.progress[data-percentage="10"] .progress-right .progress-bar {
    animation: loading-1 1.5s linear forwards;
}

.progress[data-percentage="10"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
    animation: loading-2 1.5s linear forwards;
}

.progress[data-percentage="20"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
    animation: loading-3 1.5s linear forwards;
}

.progress[data-percentage="30"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
    animation: loading-4 1.5s linear forwards;
}

.progress[data-percentage="40"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="60"] .progress-left .progress-bar {
    animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="70"] .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="80"] .progress-left .progress-bar {
    animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="90"] .progress-left .progress-bar {
    animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="100"] .progress-left .progress-bar {
    animation: loading-5 1.5s linear forwards 1.5s;
}

.view-dtl .rate ul li {
    display: block;
    color: #29303B;
}

.view-dtl .rate .rate-r {
    font-size: 18px;
    margin-right: 10px;
    font-weight: 600;
}

.view-dtl .rate ul li strike {
    font-size: 10px;
    display: inline-block;
    color: #29303B;
}

/*.view-dtl .rate {
  position: absolute;
  right: 5px;
}*/

.view-dtl .rate ul li b {
    font-weight: 500;
    font-size: 14px;
}

.view-dtl .rate ul li:last-child b {
    font-weight: 500;
}

.tab-content .view-dtl .rate {
    /*top: 44%;*/
    right: 10px;
}

.about-content-sidebar {
    background-color: var(--background-white-bg-color);
    color: var(--text-light-grey-color);
    padding: 20px 0;
    box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
    border-radius: 4px;
}

.about-content-img {
    text-align: center;
}

.about-content-img img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 50px;
}

.about-content-heading {
    margin-bottom: 10px;
    text-align: center;
}

.about-content-img p {
    margin-bottom: 10px;
}

.ratings .star-ratings-sprite {
    display: inline-block;
    float: none;
    text-align: center;
    margin-right: 10px;
}

.star-rating {
    display: inline-block;
    background: #F44A4A;
    border: 1px solid #F44A4A;
    border-radius: 5px;
    font-size: 12px;
    color: #FFF;
    padding: 0 10px;
}

.about-content-sidebar .btn-primary {
    padding: 8px 10px;
    width: 100%;
    font-size: 12px;
}

.ratings {
    text-align: center;
    margin-bottom: 20px;
}

.about-reward-badges {
    text-align: center;
}

.about-reward-badges img {
    width: 40px;
    height: 40px;
    margin-left:: 10px;
    margin-bottom: 25px;
}

.instructor-tabs {
    background-color: #FFF;
    /*box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
  border: 1px solid #DEDFE0;*/
    border-radius: 5px;
}

.instructor-tabs .nav-tabs {
    /*padding: 20px 30px 0;*/
    border-bottom: none;
}

.instructor-tabs .nav-tabs .nav-item {
    margin-left: 20px;
}

.instructor-tabs .nav-tabs .nav-link {
    border: none;
    font-size: 15px;
    font-weight: 400;
    background-color: #F2F3F5;
    color: var(--text-dark-grey-color);
    border-radius: 5px;
}

.instructor-tabs .nav-tabs .nav-link.active {
    border: none;
    background-color: var(--background-red-bg-color);
    color: #FFF;
}

.instructor-tabs .nav-tabs .nav-link:hover {
    background-color: var(--background-red-bg-color);
    color: #FFF;
}

.instructor-tabs .tab-content {
    padding: 22px 0;
}

.instructor-tabs-content {
    margin-bottom: 40px;
    color: #29303B;
    font-size: 16px;
    font-weight: 400;
}

.tab-badges-block {
    background-color: #FFF;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border: 1px solid #FFF;
    border-radius: 5px;
    padding: 40px 0;
    margin-bottom: 20px;
}

.tab-badges-block img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.tab-badges-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tab-badges-block p {
    font-size: 12px;
    font-weight: 400;
    color: #73726C;
}

.instructor-tabs .tab-content .view-dtl .rate {
    right: 20px;
}

.instructor-content-block .ratings {
    text-align: left;
}

.instructor-content-block .about-reward-badges {
    text-align: right;
}

.about-content-sidebar.instructor-sidebar {
    padding: 50px;
    margin-bottom: 50px;
}

.about-content-sidebar.instructor-sidebar .about-content-img img {
    width: 100%;
    height: 100%;
}

.instructor-content-block .about-content-heading {
    font-size: 24px;
}

.instructor-follower {
    margin-bottom: 20px;
}

.followers-status {
    display: inline-block;
}

.followers-value {
    display: block;
    color: #29303B;
    font-size: 18px;
}

.following-status {
    display: inline-block;
    border-right: 2px solid #DEDFE0;
    margin-right: 15px;
    padding-right: 15px;
}

.followers-heading {
    font-size: 12px;
    font-weight: 400;
}

.instructor-btn {
    text-align: right;
}

.instructor-btn .btn-primary {
    width: 65%;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 0;
}

.instructor-btn .btn-secondary {
    width: 65%;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 0;
}

.instructor-content-block .about-reward-badges img {
    margin-bottom: 0;
}

.instructor-student {
    margin-bottom: 40px;
}

.instructor-block .instructor-business-block {
    display: block;
}

@media (max-width: 767px) {
    .about-content-sidebar.instructor-sidebar {
        padding: 50px 0;
    }

    .about-content-sidebar.instructor-sidebar .about-content-img {
        padding: 50px 50px 0;
    }

    .instructor-content-block {
        margin-bottom: 40px;
        text-align: center;
    }

    .instructor-content-block .ratings {
        text-align: center;
    }

    .instructor-content-block .about-reward-badges {
        text-align: center;
    }

    .instructor-btn {
        text-align: center;
    }

    .instructor-tabs {
        margin-bottom: 50px;
    }

    .instructor-tabs .nav-tabs .nav-item a {
        font-size: 16px;
        padding: .5rem .5rem;
    }

    .instructor-block .instructor-small-heading {
        text-align: center;
    }

    .instructor-block h1 {
        text-align: center;
    }

    .instructor-block .sub-heading {
        text-align: center;
    }

    .instructor-business-block {
        text-align: center;
    }
}

.badge-button button {
    -webkit-appearance: button;
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
}

.badge-button form {
    margin-bottom: 0;
}

.cirtificate-serial {
    /* text-align: left!important; */
    font-size: 8px;
}

.protip-wishlist button {
    padding: 0 !important
}

.img-wishlist .protip-wishlist ul li:hover i {
    color: #FFF;
}

.search .dropdown-menu {
    left: -6px;
    min-width: 21rem;
}

.search-list {
    padding: 0 0 0 15px;
    line-height: 35px;
    border-bottom: 1px solid rgba(215, 215, 215, 0.17);
    padding-right: 20px;
    font-size: 13px;
    text-decoration: none;
    color: var(--text-black-color);
    font-weight: 400;
}

#cssmenu ul ul li a {
    border-right: 3px solid transparent;
}

.protip-wishlist {
    margin-left: 15px;
    margin-top: 5px;
}

.owl-carousel .owl-item .view-user-img .user-img-one {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #FFF;
    border-radius: 6px;
    position: absolute;
    margin-left: 17px;
    left: 0;
    bottom: 50%;
    box-shadow: 0 2px 8px 2px rgb(20 23 28 / 20%);
}

/*.owl-carousel .owl-item .view-user-img .user-img-two {
  width: 30px;
  border-radius: 100%;
  position: absolute;
  margin-left: 17px;
}*/
.owl-carousel .owl-item .view-user-img img:hover {
    z-index: 999;
}

.view-user-img {
    width: auto;
}

.advance-badge .bg-primary {
    position: absolute;
    color: #29303b;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 15px;
    background-color: #F4C150 !important;
    top: 15px;
    right: 15px;
    border-radius: 6px;
}

.compare-badge .bg-primary {
    background-color: #FFF !important;
    padding: 4px 8px;
    font-size: 10px;
    border: 1px solid #0284a2 !important;
}

.view-dtl .rating ul li.rating-review {
    color: #000;
}

.view-dtl .rating ul li.reviews {
    font-size: 11px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--background-white-bg-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;
}

.sidenav .wrapper-heading {
    margin-left: 20px;
}

.sidenav a {
    padding: 8px 32px 8px 8px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav .closebtn {
    position: absolute;
    top: 2px;
    left: 15px;
    font-size: 36px;
    margin-left: 0;
    color: var(--text_white_color);
}

svg.feather {
    width: 18px;
    height: 18px;
    margin: 15px 10px 0;
    color: var(--text-red-color);
}

.dropdown ul li svg.feather {
    margin: 0 10px 0 20px;
    vertical-align: middle;
}

.genre-slide-image .protip-wish-btn svg.feather {
    opacity: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 0 3px 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;
}

.genre-slide-image .protip-wish-btn svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #f44a4a;
    color: #FFF;
}

.genre-slide-image:hover .protip-wish-btn svg.feather {
    opacity: 1
}

.immi-slider-block .protip-wish-btn svg.feather {
    opacity: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 10px 3px 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;
}

.immi-slider-block .protip-wish-btn svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #f44a4a;
    color: #FFF;
}

.immi-slider-block:hover .protip-wish-btn svg.feather {
    opacity: 1
}

.protip-skin-default--scheme-pro.protip-container {
    max-width: 350px !important;
    min-width: 250px !important;
}

.description-list svg.feather {
    display: inline-block;
    float: left;
    margin: 0 7px 0 0;
    width: 14px;
    height: 14px;
}

.class-des,
.time-des,
.lang-des {
    font-size: 12px;
    display: inline-block;
}

.prime-description-under-block .product-learn-dtl ul li {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark-grey-color);
    margin-left: 0;
}

.prime-description-under-block .product-learn-dtl ul li svg.feather {
    margin: 0 7px 0 0;
    width: 14px;
    height: 14px;
    display: flex;
    float: left;
}

.des-btn-block .protip-wishlist ul li {
    padding: 0;
}

.des-btn-block .protip-wishlist ul li svg.feather {
    border: 1px solid #f44a4a;
    border-radius: 100%;
    padding: 1px 7px 0;
    width: 35px;
    height: 35px;
    margin: 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;
}

.des-btn-block .protip-wishlist ul li svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #f44a4a;
    color: #FFF;
}

.prime-description-under-block .product-learn-dtl ul li a {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark-grey-color);
    margin-left: 0;
}

.prime-description-under-block .description-heading a {
    font-size: 15px;
    font-weight: 600;
    color: #29303b;
}

.footer-dropdown .dropdown-menu {
    left: -50px !important;
    top: 17px !important;
    min-width: 10.5rem;
}

.footer-dropdown-two .dropdown-menu {
    left: -45px !important;
    top: 0 !important;
    min-width: 10.5rem;
}

.category-filters .view-heading a {
    font-size: 15px;
    font-weight: 700;
}

.category-filters .view-heading {
    padding: 10px 0 8px;
}

.category-filters .best-seller-one {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 1px 12px;
    height: 18px;
}

.category-filters .categories-popularity-dtl ul li svg.feather {
    margin: 2px 0 0 5px;
    width: 14px;
    height: 14px;
}

.category-filters .categories-popularity-dtl ul {
    margin-bottom: 10px;
}

.category-filters .categories-popularity-dtl ul li {
    margin-right: 8px;
}

.category-filters .categories-popularity-dtl ul li:first-child {
    margin-right: 0;
}

.student-des,
.all-levels-des {
    font-size: 12px;
    display: inline-block;
}

.category-filters .one-rating {
    font-size: 13px;
}

.categories-popularity-main-block .course-bought-block {
    margin-bottom: 30px;
}

.genre-slide-image .best-seller {
    position: absolute;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    top: 26px;
    bottom: 0;
    right: 5px;
    background-color: #F4C150;
    width: 80px;
    height: 18px;
    padding: 2px 0 0;
    z-index: 9;
    border-radius: 10px 0 0 10px;
    text-transform: capitalize;
}

.scroll-down {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.flash-button .btn-primary {
    width: 100%;
    padding: 4px 4px;
}

.test {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.test .overlay-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(244, 74, 74, 0.6);
}

.bg_image_deal {
    font-family: Arial;
    font-size: 2em;
}

.countdown-deal {
    position: relative;
    top: 40px;
    margin-bottom: 40px;
}

.bg_image_deal ul li {
    display: inline-block;
    font-size: 70px;
    margin-right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bg_image_deal ul li .text-20 {
    font-size: 20px;
}

.wishlist-home-heading a {
    margin-bottom: 0;
    color: var(--text-white-color) !important;
    font-size: 30px;
}

.flash-home-main-block .container-fluid {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.flash-home-main-block .details {
    font-size: 12px !important;
}

.invoice-sign {
    text-align: right;
}

.invoice-sign img {
    width: 70px;
    height: 70px;
}

.user-name h6 {
    margin-bottom: 10px;
}

.view-footer {
    border-top: 1px solid #DEDFE0;
    margin-top: 15px;
    padding: 15px 0 5px;
    height: 50px;
}

.view-footer svg.feather {
    margin: 0 0 0 5px;
    vertical-align: middle;
}

.view-footer .count-user span {
    font-size: 12px;
}

.user-name span a {
    color: #F44A4A;
}

.immi-slider-block {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
}

.view-user-img .user-img-one {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #FFF;
    position: absolute;
    margin-right: 17px;
    left: 10%;
    bottom: 48%;
    border-radius: 6px;
    box-shadow: 0 2px 8px 2px rgb(20 23 28 / 20%);
}

/*.immi-slider-block .advance-badge .bg-primary {
  bottom: 51%;
}*/
.immi-slider-block .view-user-img {
    height: inherit;
}

.immi-slider-block .view-dtl {
    padding: 30px 20px 10px;
    border-radius: 0 0 10px 10px;
}

.home-search svg.feather {
    margin: 10px 5px 0;
    color: #FFF;
}

.footer-dropdown svg.feather {
    color: #FFF;
    margin: 0 10px 0 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

.about-product-main-block .product-learn-dtl ul li svg.feather {
    margin: 0 10px 0 0;
    vertical-align: middle;
    display: flex;
    float: left;
}

.about-product-main-block .product-learn-dtl ul li .learn-dtl {
    display: flex;
}

.about-home-share a svg.feather {
    margin: 0 0 0 5px;
    vertical-align: middle;
    color: var(--text-blue-color);
}

.course-bought-block .heart svg.feather {
    margin: 0;
}

.course-user ul li svg.feather {
    margin: 0;
    vertical-align: middle;
    color: var(--text-red-color);
}

.report-abuse a svg.feather {
    margin: 0 0 0 5px;
    vertical-align: middle;
}

.about-home-icon ul li svg.feather {
    margin: 0 0 0 10px;
    vertical-align: middle;
    color: #FFF;
}

.btn_more {
    float: left !important;
}

.invoice-logo img {
    width: 150px;
}

.testimonial-heading {
    margin-bottom: 2px;
    text-align: left;
}

.view-date svg.feather {
    margin: 0 0 0 5px;
    vertical-align: middle;
}

.view-time svg.feather {
    margin: 0 0 0 5px;
    vertical-align: middle;
}

.view-date a,
.view-time a {
    font-size: 12px;
    color: var(--text-light-grey-color);
}

.immi-slider-block .protip-wish-btn-two svg.feather {
    opacity: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 0 3px 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;
}

.immi-slider-block .protip-wish-btn-two svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #F44A4A;
    color: #FFF;
}

.immi-slider-block:hover .protip-wish-btn-two svg.feather {
    opacity: 1;
}

.genre-slide-image .protip-wish-btn-two svg.feather {
    opacity: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 10px 3px 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;
}

.genre-slide-image .protip-wish-btn-two svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #F44A4A;
    color: #FFF;
}

.genre-slide-image:hover .protip-wish-btn-two svg.feather {
    opacity: 1;
}

#bundle-view-slider.owl-carousel .owl-item .view-user-img .user-img-one {
    bottom: 46%;
}

.star-rating {
    direction: rtl;
    display: inline-block;
    padding: 0;
    background-color: inherit;
    border: inherit;
}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.mrg-lft {
    margin-left: 30px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label {
    color: #F4C150;
}

.view-dtl .rate ul li {
    line-height: 1;
}

.student-view-block .view-dtl .rate ul li {
    line-height: 1;
}

.description-block p {
    font-size: 13px !important;
}

.review-text p {
    font-size: 14px;
}

.about-home-share {
    line-height: 0;
}

.about-home-share .about-icon-one svg.feather {
    margin: 0 5px 0 0;
    vertical-align: middle;
    color: var(--text-blue-color);
}

.about-home-share .about-icon-two svg.feather {
    margin: 0 5px 0 0;
    vertical-align: middle;
    color: var(--text-blue-color);
}

.about-tags svg.feather {
    margin: 0;
    vertical-align: middle;
    color: var(--text-black-color);
}

.sidebar-nav-icon ul a li i {
    -webkit-text-stroke: 0.5px;
    font-size: 15px;
    color: var(--text-red-color);
    margin-left: 12px;
    margin-right: 12px;
}

@media (max-width: 767px) {
    #notification_li svg.feather {
        margin: 18px 15px 0;
    }

    .nav-search.nav-wishlist svg.feather {
        margin: 18px 10px 0;
    }

    .nav-search.nav-wishlist {
        right: 6px;
    }

    .dropdown-user-circle {
        vertical-align: middle;
    }

    .mobile-btn {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }

}

@media (min-width: 992px) and (max-width: 1200px) {
    .image-container a img {
        min-height: 100px;
        max-height: 100px;
    }

    .image-overlay {
        line-height: 100px;
        font-size: 12px;
    }
}

/*.signup-block-main-block {
  border: 1px solid #FFF;
  box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
}
.signup-side-block {
  background-color: #0284a2;
  height: 100%;
  text-align: center;
}
.signup-block {
  background-color: #FFF;
}
.signup-block img {
  height: 30px;
  margin-bottom: 10px;
}*/
/*.signup-text {
  margin: 200px 0;
}*/
/*.signup-text h1 {
  color: #0284a2;
  font-size: 40px;
  margin-bottom: 0;
}
.signup-text p {
  color: #29303b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}*/

.signup-side-block {
    height: 100%;
    text-align: center;
    border-radius: 6px 0 0 6px;
}

.signup-heading .logo a img {
    width: 120px;
    margin-bottom: 10px;
}

.signup-heading {
    padding: 40px 20px 20px 0;
    border: none;
    font-size: 14px;
    text-align: center;
    border-radius: 0 6px 6px 0;
}

.signup-block {
    border: none;
}

.signup-form {
    margin-bottom: 50px;
    padding: 0;
}

.signup-form svg.feather {
    position: absolute;
    z-index: 1111;
    top: 9px;
    right: 15px;
    margin: 0;
    color: #CACBCC;
}

.signup-form .form-control {
    font-size: 14px;
}

.signup-block {
    padding: 40px 30px 0;
}

.signup-heading .form-check {
    text-align: right;
}

.signup-heading .form-check .form-check-input {
    width: 15px;
    height: 15px;
}

.signup-heading .form-check-label {
    font-size: 14px;
    margin-right: 25px;
}

.forgot-password a {
    font-size: 14px;
}

.social-link h2 {
    font-size: 14px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.social-link h2 span {
    background: #fff;
    padding: 0 10px;
}

.social-link {
    margin-bottom: 30px;
}

.social-link .social-icon i {
    text-align: center;
    font-size: 18px;
    line-height: 2.8;
    border-radius: 100%;
    color: #FFF;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
}

.social-link .social-icon.facebook-icon i {
    background-color: #1A538A;
}

.social-link .social-icon.google-icon i {
    background-color: #DB4A39;
}

.social-link .social-icon.amazon-icon i {
    background-color: #FF9900;
}

.social-link .social-icon.linkedin-icon i {
    background-color: #0E76A8;
}

.social-link .social-icon.twitter-icon i {
    background-color: #1bb2e9;
}

.social-link .social-icon.gitlab-icon i {
    background-color: #29303b;
    color: #FFF;
}

/*.social-icon:hover {
    border: 1px solid #00576B;
    background-color: #00576B;
    color: var(--text-white-color);
}*/
.social-link i {
    margin-right: 0;
}

.view-dtl .rate ul li.free-rate b {
    font-weight: 600;
    font-size: 14px;
}

.main-des-head {
    color: #29303b;
    font-size: 12px;
    margin-bottom: 10px;
}

.patners-slider.owl-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    margin-bottom: 20px;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testimonial-block .quote-img img {
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto 15px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-para {
    text-align: left;
}

.about-home-btn svg.feather {
    color: #FFF;
    margin: 0 10px 0 0;
    vertical-align: middle;
}

.about-content-sidebar .star-rating {
    color: #29303b;
}

.course-content-heading {
    margin-bottom: 5px;
}

.about-product-main-block .student-view-block .view-dtl .rate ul li {
    line-height: 1.5;
}

.instructor-link ul li svg.feather {
    color: #f44a4a;
    margin: 0;
}

.instructor-block .view-heading a {
    font-size: 14px;
}

.instructor-profile .instructor-block .rating {
    font-weight: 400;
}

.business-home-slider-block .categories-popularity-dtl ul li {
    font-size: 14px;
}

.last-updated {
    font-size: 12px;
}

.categories-popularity-dtl svg.feather {
    margin: 0 5px 0 0;
}

.business-home-slider-block .categories-popularity-dtl .ratings {
    text-align: left;
    margin-bottom: 5px;
}

.business-home-slider-block .categories-popularity-dtl .ratings ul li {
    font-size: 12px;
}

.business-home-slider-block .advance-badge .bg-primary {
    top: 0;
    bottom: inherit;
    left: 15px;
}

.categories-title {
    position: absolute;
    bottom: 45%;
    left: 0;
    right: 0;
    text-align: center;
    color: #FFF;
}

.categories-title i {
    margin-right: 10px;
}

.navigation ul li svg.feather {
    margin: 0 0 0 10px;
    vertical-align: text-top;
}

#cssmenu ul ul li a {
    width: 250px;
    font-size: 14px;
}

#cssmenu ul ul {
    border-radius: 5px;
}

#cssmenu ul ul li:first-child a {
    border-radius: 5px 5px 0 0;
}

#cssmenu ul ul li:last-child a {
    border-radius: 0 0 5px 5px;
}

.navigation ul li ul li svg.feather {
    margin: 3px 0 0 0;
    color: #29303B;
}

#cssmenu ul ul ul li:first-child a {
    border-radius: 5px 5px 0 0;
}

#cssmenu ul ul ul li:last-child a {
    border-radius: 0 0 5px 5px;
}

.testimonial-name .testimonial-heading {
    display: inline-block;
    float: right;
    border-left: 1px solid #686f7a;
    padding: 0 0 0 10px;
    margin: 0 0 0 10px;
}

.testimonial-name {
    margin-top: -15px;
}

.testimonial-rating {
    text-align: right;
}

#batch-view-slider.owl-carousel .owl-item .view-user-img .user-img-one {
    bottom: 46%;
}

#zoom-view-slider.owl-carousel .owl-item .view-user-img .user-img-one {
    bottom: 46%;
}

#blog-post-slider.owl-carousel .owl-item .view-user-img .user-img-one {
    bottom: 46%;
}

.fact-main-block {
    padding: 80px 0 40px;
}

.facts-block {
    padding: 0 15px;
    background-color: #FFF;
    border-radius: 6px;
    border: 2px solid transparent;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    -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;
}

.facts-block:hover {
    border: 2px solid #f44a4a;
    border-radius: 6px;
}

.facts-block-one {
    padding: 30px 0;
}

.facts-block-img {
    background: #D23E4C;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    -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;
}

.facts-block img {
    padding: 16px 0;
    margin-bottom: 10px;
}

.facts-block:hover .facts-block-img {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

.facts-title {
    margin-bottom: 10px;
    text-align: center;
    -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;
}

.facts-title a {
    color: #29303b;
    font-size: 16px;
}

.facts-block p {
    font-size: 14px;
    margin-bottom: 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;
}

.facts-count {
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    bottom: -4px;
    right: -10px;
    border-radius: 100%;
    border: 1px solid #FFF;
    background-color: #FFF;
    width: 40px;
    height: 40px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    padding: 7px;
    -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;
}

.facts-block:hover .facts-count {
    background-color: #D23E4C;
    color: var(--text-white-color);
    border: 1px solid #FFF;
}

.recommendations-block {
    background-color: #f44a4a;
    height: 320px;
    padding: 89px 75px;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    text-align: right;
}

.recommendations-heading {
    margin-bottom: 10px;
    color: #FFF;
}

.recommendations-block p {
    margin-bottom: 30px;
    font-size: 14px;
}

.recommendations-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.video-main-block {
    padding: 0 0 50px;
}

.video-block {
    position: relative;
}

.video-block.parallax {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.video-block .overlay-bg {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: radial-gradient(rgba(244, 74, 74, 0.8) 66%, rgba(255, 255, 255, 1) 68%);
    border-radius: 50%;
    position: absolute;
    display: block;
    margin: -23% auto;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 25px 3px rgba(244, 74, 74, 0.8);
}

/* triangle */
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

.video-dtl {
    position: absolute;
    margin: -13% auto;
    left: 0;
    right: 0;
}

.instructor-home-main-block {
    padding: 50px 0;
}

.instructor-home-main-slider.owl-carousel .instructor-home-block img {
    width: 100%;
    height: 200px;
    /* margin: -60px auto; */
    border-radius: 6px 6px 0 0;
    /*filter: grayscale(80%);*/
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.instructor-home-main-slider.owl-carousel .owl-item {
    padding: 0 0 20px;
}

.instructor-home-block {
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    /*background: #FFF;
  border: 2px solid transparent;
  border-radius: 6px;
  margin: 0 10px;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
  -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-home-dtl {
    background-color: #FFF;
    margin-top: -57px;
    padding: 14px 10px 0px 10px;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transform: translate(0, 36px);
    -webkit-transform: translate(0, 36px);
    -moz-transform: translate(0, 36px);
    -ms-transform: translate(0, 36px);
    -o-transform: translate(0, 36px);
}

.instructor-home-block:hover .instructor-home-dtl {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
}

.instructor-home-heading {
    margin-bottom: 8px;
    text-align: center;
    -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-home-heading a {
    color: var(--text-black-color);
    font-size: 16px;
    -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-home-dtl p {
    font-size: 13px;
    -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-home-rating {
    margin-bottom: 10px;
}

.instructor-home-btn .btn-primary {
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    background: inherit;
    text-transform: uppercase;
    color: #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;
}

.instructor-home-block:hover {
    /*border: 2px solid #f44a4a;
  border-radius: 6px;*/
    /*background-image: linear-gradient(white, white), linear-gradient(197.61deg, #f44a4a , #6e1a52);
  background-origin: border-box;
  background-clip: content-box, border-box;*/
}

.instructor-button .btn-secondary {
    padding: 2px 10px;
}

.heart-fill svg.feather {
    fill: #FFF;
    background-color: #F44A4A !important;
    border: 1px solid #F44A4A !important;
    margin: 10px 3px !important;
    -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;
}

.heart-fill svg.feather:hover {
    background-color: #FFF !important;
    color: #f44a4a !important;
}

.sticky.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    background-color: #FFF;
}

.sign-up a {
    font-weight: 500;
}

.signup-side-block img {
    height: 650px;
    width: 100%;
    position: relative;
    border-radius: 0 6px 6px 0;
}

.login-signup {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.forgot-pass {
    padding: 180px 20px 150px 0;
}

.reset-pass {
    padding: 120px 20px 20px 0;
}

.business-home-search .search {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: left;
}

.business-home-search .searchTerm {
    width: 80%;
    border: 2px solid #f44a4a;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-left: none;
    padding: 5px 20px;
    height: 45px;
    border-radius: 30px;
    outline: none;
    color: #29303b;
    position: relative;
}

.business-home-search .searchButton {
    width: 15%;
    height: 45px;
    border: 1px solid var(--text-red-color);
    background: var(--background-red-bg-color);
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    left: 0;
    color: #FFF;
}

.business-home-search .searchButton svg.feather {
    color: #FFF;
    margin: 8px 0 0;
}

.home-search .searchButton svg.feather {
    color: #FFF;
    margin: 8px 0 0;
}

.prime-description-under-block .shopping-cart svg.feather {
    vertical-align: middle;
    margin: 0 10px 0;
    color: #FFF;
}

.grid-img {
    height: 200px !important;
    margin-bottom: 20px;
    border-radius: 6px 6px 0 0;
}

.btn-group-toggle {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.btn-outline-dark {
    background-color: inherit;
    border-color: inherit;
    border: inherit;
    padding: 0.375rem 0.75rem 0.50rem;
    -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-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
    background-color: #F44A4A;
    border-color: inherit;
}

.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-outline-dark:hover {
    background-color: #F44A4A;
    border-color: inherit;
}

.btn-outline-dark svg.feather {
    color: #29303b;
    margin: 0;
    width: 20px;
    height: 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;
}

.btn-outline-dark.active svg.feather {
    color: #FFF;
}

.btn-outline-dark:hover svg.feather {
    color: #FFF;
}

.course-bought-block .img-wishlist-btm {
    bottom: 0;
    top: inherit;
}

.course-bought-block .img-wishlist svg.feather {
    opacity: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 0 3px 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;
}

.course-bought-block:hover .img-wishlist svg.feather {
    opacity: 1;
}

.course-bought-block .img-wishlist svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #f44a4a;
    color: #FFF;
}

.course-bought-block .view-user-img .user-img-one {
    width: 60px;
    height: 60px !important;
    border: 2px solid #FFF;
    border-radius: 6px;
    position: absolute;
    margin-left: 0;
    left: 10%;
    bottom: -25px;
    box-shadow: 0 2px 8px 2px rgb(20 23 28 / 20%);
    display: none;
}

.course-bought-block .view-user-img {
    width: auto;
}

.login-img {
    position: absolute;
    top: 0;
}

.login-img img {
    padding: 80px 0;
}

.btn-group-small-screen {
    display: none;
}

.featured-review-block p {
    font-size: 13px;
}

.featured-review-img-dtl .year {
    font-size: 12px;
}

.course-name a {
    font-size: 13px;
}

.about-product-main-block .course-bought-img img {
    width: 100%;
    height: 120px;
    border-radius: 6px;
}

.review-rating-btn .btn-success {
    padding: 6px 15px;
    font-size: 13px;
}

.review-dtl .review-text p {
    font-size: 13px;
}

.review-dtl .review {
    font-size: 13px;
}

.review-dtl .review a {
    font-size: 13px;
}

.protip-wish-btn svg.feather {
    opacity: 1;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 10px 3px 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;
}

.protip-wish-btn svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #F44A4A;
    color: #FFF;
}

.student-view-block:hover .protip-wish-btn svg.feather {
    opacity: 1;
}

.card-header:first-child {
    border-radius: 6px;
}

.chapter-total-heading {
    font-size: 13px;
}

.chapter-total-classes {
    font-size: 13px;
}

.complete {
    font-size: 12px;
    margin-top: 5px;
}

.wishlist-action {
    position: absolute;
    top: 0;
    right: 0;
}

.wishlist-action svg.feather {
    margin: 0 5px 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px 0;
    width: 28px;
    height: 28px;
    -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;
}

.wishlist-action svg.feather:hover {
    background-color: #F44A4A;
    border: 1px solid #F44A4A;
    color: #FFF;
}

.purchase-main-block .table {
    background-color: var(--background-grey-bg-color);
}

.purchase-main-block .table thead th {
    border-bottom: inherit;
}

.purchase-main-block .table td, .table th {
    border-top: inherit;
}

.dashboard-items ul li svg.feather {
    margin: 0 10px 0;
    vertical-align: middle;
}

#cssmenu > ul > li.has-sub :hover > a {
    color: #f44a4a;
}

#cssmenu > ul > li.has-sub :hover > svg.feather {
    color: #F44A4A;
}

#cssmenu ul ul li a:hover {
    border-right: 3px solid #f44a4a;
}

.upload-items .btn-primary {
    padding: 8px 16px;
}

.user-bank-block .table {
    background-color: var(--background-white-bg-color) !important;
    box-shadow: inherit !important;
}

.user-bank-button .modal-dialog {
    margin: 200px auto;
}

.factor-main-block .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
}

.flash-button {
    margin-top: 10px;
    margin-right: 25px;
}

.flash-deals-block .view-dtl p a {
    font-size: 12px;
}

.bg_image_deal p {
    position: relative;
}

.view-deals-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.view-heading.view-deal-heading a {
    width: 300px;
    font-size: 16px;
}

.view-deals-img .card-title {
    margin-bottom: 0;
}

.view-deals-price {
    font-size: 22px;
}

.view-deal-btn .btn-primary {
    padding: 8px 16px;
}

.view-deal-btn svg.feather {
    margin: 0 10px 0 0;
    color: #FFF;
    vertical-align: text-bottom;
}

.card.view-deals-img {
    border-radius: 6px;
}

.business-home-main-block {

}

@media (max-width: 767px) {
    .profile-block .profile-block-img {
        margin-top: 0;
    }

    .growth-block {
        height: inherit;
    }

    .profile-dtl-block {
        padding: 50px 0;
    }

    .online-blog-block {
        height: inherit;
    }

    #bar-fixed .col {
        padding: 0;
    }

    .sidebar-nav-icon ul a li i {
        margin-right: 0;
    }

    .facts-block {
        margin-bottom: 30px;
    }

    .testimonial-main-block .row {
        margin: 0 !important;
    }

    .testimonial-name {
        margin: 50px auto 0;
        text-align: center;
    }

    .testimonial-rating {
        text-align: center;
    }

    .testimonial-slider-main-block.owl-carousel .owl-item .testimonial-block img {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .play-btn {
        margin: -90% auto;
    }

    .video-dtl {
        margin: -55% auto;
        left: 30px;
        right: 30px;
    }

    .video-dtl p {
        font-size: 13px;
    }

    .btn-group-web-screen {
        display: none;
    }

    .dashboard-items {
        margin-bottom: 30px;
    }

    .card.view-deals-img {
        margin-bottom: 30px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    #notification_li {
        top: 10px;
    }

    #notification_li span {
        top: 3px;
        left: 35px;
    }

    .shopping-cart {
        top: 4px;
        right: 0;
    }

    .shopping-cart .red-menu-badge {
        left: 28px;
    }

    .learning-courses .nav-link {
        margin-right: 8px;
    }

    .nav-search.nav-wishlist {
        right: -10px;
        top: 3px;
    }

    .growth-block {
        height: inherit;
    }

    .profile-block .profile-block-img {
        width: 150px;
        height: 150px;
        margin-top: 0;
    }

    .sidebar-nav-icon ul a li i {
        margin-right: 0;
    }

    .facts-block {
        margin-bottom: 30px;
    }

    .facts-block p {
        font-size: 13px;
    }

    .testimonial-main-block .row {
        margin: 0 !important;
    }

    .testimonial-name {
        text-align: center;
    }

    .testimonial-rating {
        text-align: center;
    }

    .testimonial-slider-main-block.owl-carousel .owl-item .testimonial-block img {
        left: 0;
        right: 0;
    }

    .testimonial-name .testimonial-heading {
        padding: 0 0 0 5px;
        margin: 0 0 0 5px;
        font-size: 15px;
    }

    .testimonial-block-one {
        padding: 30px 15px !important;
    }

    .play-btn {
        margin: -40% auto;
    }

    .video-dtl {
        margin: -23% auto;
        left: 30px;
        right: 30px;
    }

    .about-home-dtl-block {
        padding: 15px 20px;
    }

    .about-home-rate ul li {
        font-size: 22px;
    }

    .about-home-rate ul li span {
        font-size: 12px;
    }

    .about-home-main-block .col {
        padding: 0;
    }

    .about-reward-badges img {
        margin-right: 5px;
    }

    .about-home-main-block .btn-video-play i {
        left: 25%;
    }

    .bar-block {
        width: 60%;
    }

    .histo {
        margin-right: 0;
    }

    .rating-num {
        font-size: 50px;
    }

    .review-dtl .review-rating {
        margin-top: 20px;
    }

    .about-product-main-block .view-heading a {
        width: 150px;
    }

}

@media (min-width: 992px) and (max-width: 1200px) {
    .profile-block .profile-block-img {
        width: 170px;
        height: 170px;
    }

    .facts-block p {
        font-size: 13px;
    }

    .view-heading a {
        width: 200px;
    }

    .testimonial-main-block .row {
        margin: 0 0.5rem !important;
    }

    .testimonial-name .testimonial-heading {
        padding: 0 5px 0 0;
        margin: 0 5px 0 0;
        font-size: 14px;
    }

    .testimonial-block {
        padding: 30px 20px;
    }

    .play-btn {
        margin: -30% auto;
    }

    .video-dtl {
        margin: -15% auto;
    }

    .about-home-main-block .col {
        padding: 0;
    }
}

.float-right {
    float: left !important;
}

.text-right {
    text-align: left !important;
}

.text-left {
    text-align: right !important;
}

.forum-test .chat-head img {
    margin-left: 1rem !important;
    margin-right: 0 !important
}

.chat-head1 {
    padding-right: 50px;
    padding-left: 0 !important;
}

.forum-test .chat-head1 img {
    margin-left: 1rem !important;
    margin-right: 0 !important
}

.chat-detail .chat-head2 {
    padding: 15px 140px 0 0 !important;
}

.forum-test .chat-head2 img {
    margin-left: 1rem !important;
    margin-right: 0 !important
}

.custom-file-label::after {
    left: 0;
    right: initial !important;
}

.course-cirtificate {
    padding: 60px 0;
    background-color: var(--background-grey-bg-color);
}

.img-circle {
    border-radius: 100%;
}

.recipient-block {
    background-color: var(--background-white-bg-color);
    padding: 10px;
    margin-bottom: 20px;
}

.download-btn .btn-secondary {
    width: 100%;
}

.modal-dialog {
    margin: 100px auto;
}

.job-portal-block .button a {
    border-right: 3px solid transparent !important;
    border-left: inherit !important;
    padding: 20px 30px 15px;
    text-align: right;
}

.job-portal-block .nav {
    padding: 20px 0;
    border-radius: 6px;
    margin-bottom: 30px;
}

.job-portal-block .button .active {
    border-right: 3px solid var(--text-red-color) !important;
    border-left: inherit !important;
    color: var(--text-red-color);
}

.job-portal-block .button a:hover {
    border-right: 3px solid var(--text-red-color) !important;
    border-left: inherit !important;
    color: var(--text-red-color);
}

.job-portal-block .button a i {
    margin-left: 5px;
}

.form-wizard {
    border-radius: 6px;
}

#size {
    height: 33px !important;
}

.learning-courses-about-main-block .second-accordion .card-body a.btn-light.focus,
.learning-courses-about-main-block .second-accordion .card-body a.btn-light:focus {
    background: var(--background-blue-bg-color);
}

.learning-courses-about-main-block .second-accordion .card-body a.btn-light.active,
.learning-courses-about-main-block .second-accordion .card-body a.btn-light:hover {
    background-color: #003845;
    border: 1px solid #003845;
}

.business-img {
    position: relative;
}

.business-dtl {
    position: absolute;
    top: 40%;
    left: 5%;
    right: 5%;
}

.business-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.instructor-page {
    padding: 80px 0;
}

.instructor-page .instructor-home-block {
    margin-bottom: 40px;
}

.instructor-page .instructor-home-block img {
    width: 100%;
    height: 200px;
    /* margin: -60px auto; */
    border-radius: 6px 6px 0 0;
    /* filter: grayscale(80%); */
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.instructor-reward-badges ul li {
    display: inline-block;
    margin-right: 10px;
}

.instructor-reward-badges ul li img {
    width: 30px !important;
    height: 30px !important;
    margin: 10px auto 20px !important;
}

.instructor-home-info ul li {
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
    border-left: 1px solid #29303b;
    padding-left: 5px;
    -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-home-info ul li:last-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 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;
}

.instructor-home-social-icon ul li {
    display: inline-block;
}

.instructor-home-social-icon svg.feather {
    margin: 0 5px 0;
    width: 16px;
    height: 16px;
    /*border-radius: 100%;
  padding: 5px;
  border: 1px solid #D23E4C;*/
    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;
}

.instructor-profile-main-block {
    background-color: #F6F7FC;
}

.instructor-profile-img img {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    object-fit: cover;
}

.instructor-profile-main-block {
    padding: 50px 0;
}

.instructor-profile-img img {
    width: 180px;
    height: 180px;
    border-radius: 100%;
}

.instructor-profile-main-block {
    padding: 50px 0;
}

.instructor-profile-block {
    background-color: var(--background-white-bg-color);
    padding: 50px 30px;
    /*box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);*/
    border-radius: 6px;
}

.instructor-info-main-block .view-footer .rate ul {
    line-height: 1;
}

.instructor-info-main-block .view-footer .rate ul li {
    line-height: 0;
}

.instructor-profile-img {
    margin-bottom: 20px;
}

.instructor-profile-tabs {
    background-color: #FFF;
    border-radius: 6px;
    padding: 30px;
}

.instructor-profile-tabs .nav-tabs {
    border-bottom: none;
    margin-bottom: 30px;
}

.instructor-profile-tabs .nav-item {
    margin-right: 10px;
}

.instructor-profile-tabs .nav-tabs .nav-link {
    border: inherit;
    background-color: var(--background-red-bg-color);
    color: #FFF;
    border-radius: 6px;
}

.instructor-profile-tabs .nav-tabs .nav-item.show .nav-link,
.instructor-profile-tabs .nav-tabs .nav-link.active {
    background-color: var(--background-red-bg-color);
    color: #FFF;
}

.instructor-profile-main-block .instructor-home-social-icon {
    margin-bottom: 0;
}

.instructor-about {
    margin-bottom: 30px;
}

.instructor-about p {
    font-size: 13px;
}

.instructor-education {
    margin-bottom: 30px;
}

.instructor-education ul li svg.feather {
    margin: 0 10px 0 0;
    width: 10px;
    height: 10px;
}

.instructor-education ul li {
    font-size: 13px;
}

.instructor-experiences {
    margin-bottom: 30px;
}

.instructor-experiences ul li svg.feather {
    margin: 0 10px 0 0;
    width: 10px;
    height: 10px;
}

.instructor-experiences ul li {
    font-size: 13px;
}

.instructor-skill {
    margin-bottom: 30px;
}

.instructor-skill ul li {
    display: inline-block;
    float: left;
    font-size: 12px;
    margin-right: 15px;
    background-color: #F6F7FC;
    padding: 5px 15px;
    border-radius: 6px;
}

.instructor-profile-mail {
    margin-bottom: 10px;
}

.instructor-profile-number {
    margin-bottom: 10px;
}

.instructor-profile-main-block .instructor-home-info ul li {
    margin-left: 15px;
    margin-bottom: 15px;
    border-left: 1px solid #29303B;
    padding-left: 15px;
    font-size: 14px;
}

.instructor-profile-main-block .instructor-home-info ul li:last-child {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
}

.instructor-profile-tabs .rate ul {
    line-height: 0.5;
}

.instructor-profile-tabs .rate ul li {
    line-height: 0 !important;
}

.instructor-profile-btn .advance-badge .bg-primary {
    color: #FFF;
    left: 30px;
}

.instructor-profile-btn .advance-badge-two .bg-primary {
    background-color: var(--background-red-bg-color) !important;
}

.video-main-block .modal-dialog {
    max-width: 60% !important;
}

.video-main-block .modal-content {
    background-color: inherit;
    border: inherit;
}

.video-main-block .close {
    color: #FFF;
    opacity: 1;
    font-size: 28px;
}

.video-main-block .close:not(:disabled):not(.disabled):focus,
.video-main-block .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.video-main-block .close:hover {
    color: #FFF;
}

.recommendation-btn .btn-primary {
    background-color: #FFF;
    border-radius: 6px;
    color: #F44A4A;
}

.requirements {
    margin-bottom: 30px;
}

.description-block img {
    margin-bottom: 20px;
    border-radius: 6px;
}

.about-product-main-block .course-bought-block {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    border-radius: 6px;
    background-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;
}

.course-bought-block .heart-fill svg.feather {
    margin: 0;
}

.categories-block.assign-tab-one {
    background-color: #FFF;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    border-radius: 6px;
}

.homework-block .btn {
    font-size: 14px;
}

.border1 {
    border-style: dotted;
    border-width: 2px;
}

.instructor-img img {
    height: 400px;
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.instructor-img {

}

.blog-main-block {
    margin-top: -200px;
    margin-bottom: 40px;
    border
}

.left-course {
    margin-left: 16rem !important;
}

.border-color {
    border: 2px solid;
    width: 70px;
    border-color: orange;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 orange;
    padding: 15px;
}

.course-icon {
    color: orange;
    font-size: 30px;
}

.border2-color {
    border: 2px solid;
    width: 70px;
    border-color: #00BFFF;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 #00BFFF;
    padding: 15px;
}

.course2-icon {
    color: #00BFFF;
    font-size: 30px;
}

.border1-color {
    border: 2px solid;
    width: 70px;
    border-color: #A52A2A;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 #A52A2A;
    padding: 15px;
}

.course1-icon {
    color: #A52A2A;
    font-size: 30px;
}

.institute-profile-block-one p {
    margin-bottom: 0;
}

.institute-profile img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
}

.institute-profile-block {
    padding: 20px 40px;
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    border: inherit;
}

.institute-profile-dtl {
    padding: 40px 0;
}

.institute-profile-block-one {
    padding: 10px 0;
}

.institute-profile-block-one .institute-profile-icon {
    margin: 0 auto;
}

.institute-profile-des .card {
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    border: inherit;
}

.institute-main-block {
    position: relative;
}

.institute-profile-block hr {
    margin-top: 20px;
}

.institute-profile-block .card-body {
    padding: 0;
}

font-size:

13
px

;
}
.blog-slider-heading a {
    color: var(--text-black-color);
}

.blog-block {
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    margin-bottom: 30px;
}

.blog-block-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.block-block-dtl {
    padding: 20px;
}

.block-block-dtl p {
    font-size: 13px;
}

.blog-slider-heading a {
    font-size: 16px;
    color: var(--text-black-color);
}

.blog-slider-heading a:hover {
    color: var(--text-black-color);
}

.blog-dtl-img img {
    width: 100%;
    border-radius: 6px;
}

.blog-dtl-main-block ul {
    margin-bottom: 10px;
}

.blog-dtl-main-block ul li {
    display: inline-block;
    margin-right: 15px;
}

.blog-dtl-main-block p {
    font-size: 13px;
}

.blog-link {
    margin-top: 40px;
}

.blog-link a {
    padding: 10px;
    color: #FFF;
}

.blog-dtl-sidebar {
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    margin-bottom: 30px;
    padding: 20px;
}

.sidebar-block {
    margin-bottom: 30px;
}

.sidebar-block img {
    border-radius: 6px;
}

.sidebar-block h5 {
    margin-bottom: 10px;
}

.blog-dtl-sidebar .btn-primary {
    width: 100%;
    padding: 6px;
}

.sidebar-heading {
    margin-bottom: 30px;
}

.blog-slider-heading {
    margin-bottom: 10px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: inherit;
    border-color: inherit;
}

.btn-primary:focus {
    border-color: inherit;
}

.testimonial-block:hover {
    border: 2px solid #f44a4a;
    border-radius: 6px;
    transform: translateY(-25px);
    transition: all .5s ease;
}

.testimonial-block-one {
    padding: 30px;
}

.instructor-home-block-one {
    padding: 0;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    background-color: inherit;
    border-color: inherit;
}

.btn-secondary.focus, .btn-secondary:focus {
    color: var(--text-dark-grey-color);
    background-color: inherit;
    border-color: #686F7A;
    box-shadow: none;
}

.video-heading {
    text-align: center;
}

.instructor-button {
    text-align: left !important;
}

.featured-review-img-dtl .pull-left {
    float: right;
}

.about-instructor-block .instructor-img img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.mycourse-progress {
    margin-top: 10px;
}

.mycourse-progress .progress {
    height: 6px;
}

.protip-wish-btn-two svg.feather {
    opacity: 1;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 0 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;
}

.protip-wish-btn-two svg.feather:hover {
    background-color: var(--background-red-bg-color);
    border: 1px solid #F44A4A;
    color: #FFF;
}

.purchase-table {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.flash-deal-block p a {
    font-size: 12px;
}

.refer-btn .btn-primary {
    padding: 4px 25px;
    border-radius: 6px 0 0 6px;
}

.refer-btn .btn-primary svg.feather {
    margin: 0 10px 0;
    color: #FFF;
}

.user-bank-button .info p {
    font-size: 13px;
}

.user-bank-button .info h2 {
    font-size: 24px;
}

.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .form-control:not(:last-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.compare-block {
    margin-top: 0;
}

.search-icon .btn-primary {
    border-radius: 5px 0 0 5px !important;
    padding: 5px 20px !important;
}

#grad1 i {
    margin-left: 8px !important;
}

#grad1 span {
    margin-right: 8px !important;
}

.create-job-portal p i {
    margin-left: 8px;
    margin-right: 0 !important;
}

.resume-edit-page input {
    border-radius: 6px;
    border: 1px solid #ced4da;
    font-size: 14px;
    padding: 8px;
}

.resume-edit-page textarea {
    border-radius: 6px;
    border: 1px solid #ced4da;
    font-size: 14px;
    padding: 10px 30px;
}

textarea.form-con {
    height: 43px !important;
}

.progress-block .histo-rate {
    display: inline-block;
    width: 95%;
    clear: both;
}

.progress-block .histo-rate .bar-block {
    height: 6px;
}

.sidebar-block-heading a {
    color: #29303b;
    font-size: 16px;
}

.factor-page .btn-primary {
    padding: 10px 25px;
}

.profile-dtl-block-heading {
    text-align: center;
}

.compare-data-block {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    text-align: center;
    padding: 20px;
    font-size: 24px;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .business-dtl {
        top: 30%;
    }

    .business-home-main-block h1 {
        text-align: center;
    }

    .business-home-search .search {
        justify-content: center;
    }

    .business-home-search .searchTerm {
        width: 100%;
    }

    .business-home-search .searchButton {
        width: 25%;
    }

    .about-home-product {
        position: relative;
        top: 0;
    }

    .about-content-sidebar {
        margin-bottom: 30px;
    }

    .review-table .star-rating i {
        margin-left: 25px;
    }

    .course-user {
        margin-top: 15px;
    }

    .course-currency {
        margin-top: 15px;
    }

    .course-rate {
        margin-top: 15px;
    }

    .homework-block {
        text-align: center;
        margin: 20px 0 !important;
    }

    .homework-block .text-justify {
        text-align: center !important;
    }

    .homework-block .btn {
        float: none !important;
        font-size: 14px;
        margin-top: 10px;
    }

    .cirtificate-border-one {
        margin-bottom: 30px;
    }

    .instructor-img img {
        height: 300px;
    }

    .blog-main-block {
        margin-top: -100px;
    }

    .institute-profile {
        text-align: center;
    }

    .institute-profile img {
        width: 150px;
        height: 150px;
        margin-top: -80px;
    }

    .institute-profile-dtl {
        padding: 20px 0;
        text-align: center;
    }

    .institute-profile-dtl .about-reward-badges {
        text-align: center !important;
    }

    .institute-profile-dtl .about-reward-badges img {
        margin-bottom: 0;
    }

    .blog-main-block .owl-carousel .owl-item img {
        margin: 0 auto;
    }

    #video_modal .modal-dialog {
        max-width: 100% !important;
    }

    .home-search .searchTerm {
        font-size: 12px;
    }

    .home-search .searchButton {
        width: 25%;
        right: 75%;
        font-size: 12px;
    }

    .image-overlay span {
        top: -45px;
    }

    .about-content-heading {
        text-align: center;
    }

    .refer-block .input-group-append {
        width: 100%;
    }

    .refer-btn .btn-primary {
        width: 100%;
    }

    .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
    .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after,
    .input-group:not(.has-validation) > .custom-select:not(:last-child),
    .input-group:not(.has-validation) > .form-control:not(:last-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group > .input-group-append > .btn,
    .input-group > .input-group-append > .input-group-text,
    .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn,
    .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .compare-block {
        margin-top: 0;
    }

    .typeahead {
        width: 100% !important;
    }

    .create-job-block {
        text-align: center;
        margin-bottom: 20px;
    }

    .create-job-block img {
        margin-left: 0 !important;
    }

    .apply-button {
        top: 0 !important;
    }

    .create-job-block-btn {
        text-align: center;
    }

    .custom-control.custom-switch {
        margin-bottom: 30px;
    }

    .learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, .learning-courses-about-main-block .nav-tabs .nav-link {
        margin-bottom: 10px;
        padding: 10px;
    }

    .learning-courses-about-main-block .nav-tabs .nav-link.active {
        padding: 10px;
    }

    .signup-side-block img {
        border-radius: 6px 6px 0 0;
    }

    .growth-main-block {
        padding: 0 0 100px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .business-home-search .searchTerm {
        width: 100%;
    }

    .business-home-search .searchButton {
        width: 25%;
    }

    .view-heading a {
        width: 220px;
    }

    .course-user ul li svg.feather {
        margin: 0 -3px;
    }

    .progress-block .histo-rate {
        width: 90%;
    }

    .learning-courses-home-video .btn-video-play i {
        top: 30%;
        left: 20%;
        font-size: 30px;
        padding: 20px 23px;
    }

    .learning-courses-about-main-block .second-accordion .card-header button.btn {
        padding: 10px;
    }

    .course-cirtificate .view-heading a {
        width: 158px;
    }

    .gift-main-block .form-control {
        padding: 0.375rem 0.50rem;
        font-size: 14px;
    }

    .instructor-profile .instructor-img img {
        width: 200px;
        height: 200px;
    }

    .institute-profile img {
        width: 150px;
        height: 150px;
    }

    .blog-slider-block {
        margin: 100px 20px 30px 20px;
    }

    .recommendation-btn .btn-primary {
        padding: 12px;
    }

    .nav-wishlist svg.feather {
        margin: 15px 22px 0;
    }

    .instructor-profile-block {
        padding: 50px 5px;
    }

    .instructor-profile-main-block .instructor-home-info ul li {
        margin-left: 5px;
        padding-left: 5px;
    }

    .about-content-heading {
        text-align: center;
    }

    .typeahead {
        width: 100% !important;
    }

    .apply-button {
        padding: 10px;
    }

    .learning-courses-about-main-block .nav-tabs .nav-item.show .nav-link, .learning-courses-about-main-block .nav-tabs .nav-link {
        margin-bottom: 10px;
    }

    .careers-main-block {
        padding: 0 0 300px;
    }

    .careers-video-main-block {
        top: 49%;
    }

    .careers-learn-video-one {
        padding: 0 20px;
    }

    .signup-side-block img {
        height: 686px;
    }

    .register-page .signup-side-block img {
        height: 762px;
    }

    .signin-link {
        margin-bottom: 10px;
    }

    .growth-main-block {
        padding: 0 0 100px;
    }
}

.instructor-button {
    -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-button .btn-secondary {
    -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-button:hover .btn-secondary {
  background-color: #F44A4A;
  border: 1px solid #F44A4A;
  color: #FFF;
}*/

.image-container:hover .categories-img-count {
    bottom: -25px;
    opacity: 1;
}

.instructor-home-block .instructor-home-hover-icon {
    position: absolute;
    display: inline-block;
    opacity: 0;
    top: 10px;
    font-size: 18px;
    right: 15px;
    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;
}

.instructor-home-block:hover .instructor-home-hover-icon {
    opacity: 1;
}

.instructor-home-block .tooltip .tooltip-icon svg.feather {
    margin: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px 0;
    width: 28px;
    height: 28px;
}

.instructor-home-block .tooltip .tooltip-icon svg.feather:hover {
    border: 1px solid #F44A4A;
    background-color: #F44A4A;
    color: #FFF;
}

.instructor-home-block .tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 1px 0px 5px;
    position: absolute;
    z-index: 1;
    bottom: -2px;
    right: 0;
    margin-right: -140px;
    opacity: 0;
    transition: opacity 0.3s;
}

.instructor-home-block .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 35%;
    left: -10px;
    margin-left: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

.instructor-home-block .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.btn-primary:focus {
    border: inherit;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: inherit;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #F44A4A;
}

.signup-block .form-check-input {
    margin-top: 0.6rem;
}

.instructor-tabs .about-instructor .view-footer .rate ul {
    line-height: 0;
}

.protip-btn svg.feather {
    color: #FFF;
    margin: 0 10px 0;
}

.box-footer svg.feather {
    color: #FFF;
    margin: 0 10px 0;
}

.instructor-home-btn svg.feather {
    margin: 0 10px 0;
    width: 16px;
    height: 16px;
}

.course-user ul li {
    margin-left: 10px;
}

.course-user ul li svg.feather {
    display: inline-block;
    /*
  float: left;*/
    margin-left: 5px;
}

.course-user ul li .course-update {
    color: var(--text-black-color);
    display: inline-block;
}

.course-user-count {
    font-size: 12px;
    display: inline-block;
}

.course-name a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black-color);
}

.course-rate {
    position: absolute;
    top: 10px;
    left: 20px;
}

.course-rate svg.feather {
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px;
    width: 28px;
    height: 28px;
    margin: 0 3px 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;
}

.course-bought-block:hover .course-rate svg.feather {
    opacity: 1;
}

.course-name-para {
    font-size: 13px;
    color: var(--text-dark-grey-color);
}

.instructor-profile-dtl .btn-primary {
    padding: 5px 20px;
    font-size: 16px;
    margin-top: 5px;
}

.instructor-profile-dtl .instructor-home-social-icon svg.feather {
    color: var(--text-black-color);
}

.instructor-profile-img {
    position: relative;
}

.instructor-profile-block .tooltip {
    position: absolute;
    display: inline-block;
    opacity: 1;
    top: 5px;
    font-size: 18px;
    right: 110px;
    color: #FFF;
    border-radius: 100%;
    box-shadow: 1px 1px 18px rgb(0 0 0 / 15%);
}

.instructor-profile-block .tooltip .tooltip-icon svg.feather {
    margin: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px 0;
    width: 28px;
    height: 28px;
}

.instructor-profile-block .tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 1px 0px 5px;
    position: absolute;
    z-index: 1;
    bottom: -2px;
    left: 0;
    margin-left: -140px;
    opacity: 0;
    transition: opacity 0.3s;
}

.instructor-profile-block .tooltip .tooltip-icon svg.feather:hover {
    border: 1px solid #F44A4A;
    background-color: #F44A4A;
    color: #FFF;
}

.instructor-profile-block .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.flash-button .btn-primary {
    background-color: inherit;
    border: inherit;
}

.job-portal-block .profile-info-block .btn-primary {
    padding: 5px 25px;
}

.no-result-img img {
    width: 400px;
    height: 100%;
    border-radius: 6px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

.resume-edit-page p i {
    position: absolute;
    color: #29303b;
    margin: 14px 10px;
}

.forum-page .profile-info-block .card-img-top {
    object-fit: cover;
    margin-bottom: 0;
}

.forum-page .blog-link .btn-primary-rgba {
    color: #29303b;
}

.forum-page .blog-link {
    margin-top: 0;
}

.chat-detail .chat-head2 {
    border-bottom: inherit !important;
}

.about-product-main-block .course-currency {
    text-align: left !important;
}

.meeting-owner {
    color: var(--text-blue-color);
}

.instructor-profile-dtl .instructor-btn {
    text-align: center;
}

.instructor-profile-dtl .instructor-btn .btn-primary {
    width: inherit;
}

.instructor-profile-dtl .instructor-btn .btn-secondary {
    width: inherit;
    background-color: var(--background-red-bg-color);
    color: #FFF;
    border: 1px solid #F44A4A;
}

.cart-main-block .checkout-btn .btn-primary {
    padding: 5px 10px;
    margin-top: -20px;
}

.faq-detail-main-block .blog-link a {
    color: #29303b;
}

.user-img img {
    position: relative;
    border-radius: 100%;
    margin-bottom: 30px;
    margin: 0 auto;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #FFF;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

.user-edit-icon {
    position: absolute;
    top: 4%;
    right: 24%;
    background-color: #FFF;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    line-height: 3;
    padding: 0px 10px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

.user-edit-icon svg.feather {
    margin: 0 3px;
    width: 20px;
    height: 20px;
}

.user-edit-icon input {
    display: none;
}

.resume-edit-page .user-img {
    background-color: #00bcd4;
    border-radius: 6px 0 0 6px;
    padding: 30px;
}

.user-img label {
    color: #FFF;
}

.resume-edit-page hr {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.resume-block {
    border-radius: 0 6px 6px 0;
    padding: 30px;
}

.nav-search .btn-primary svg.feather {
    margin: 0;
    color: #FFF;
}

.user-bank-block .table {
    margin-bottom: 0;
}

.select2-container--default .select2-selection--single {
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px) !important;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff !important;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px !important;
}

#colorbox, #cboxOverlay, #cboxWrapper {
    z-index: 999999 !important;
}

.assignment-main-block svg.feather {
    margin: 0 10px 0;
}

.assignment-main-block .btn-primary {
    padding: 7px 25px;
}

.course-bought-img {
    margin-bottom: 15px;
}

.coming-soon-main-block .facts-block {
    padding: 10px;
}

.coming-soon-main-block .facts-heading {
    margin-bottom: 0;
}

.coming-soon-main-block .nav-bar-btn .btn-primary {
    padding: 10px 25px;
}

.student-profile-main-block {
    padding: 60px 0;
    background-color: #F2F3F5;
}

/*.student-profile-img {
  margin-bottom: 40px;
}*/
.student-profile-img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.student-info {
    padding: 35px 0;
}

.student-contact-dtl {
    margin-bottom: 40px;
    /*text-align: center;*/
}

.student-contact-dtl h4 {
    /*background-color: var(--background-grey-bg-color);*/
    text-align: right;
    padding: 10px 0;
    color: var(--text-black-color);
    font-size: 18px;
    margin-bottom: 0;
}

/*.student-social-dtl {
  text-align: center;
}*/
.student-social-dtl h4 {
    /*background-color: var(--background-grey-bg-color);*/
    text-align: right;
    padding: 10px 0;
    color: var(--text-black-color);
    font-size: 18px;
    margin-bottom: 0;
}

.student-social-dtl p {
    font-size: 14px;
    margin-bottom: 15px;
}

.student-social-dtl span {
    font-weight: 600;
}

.student-courses h4 {
    /*background-color: var(--background-grey-bg-color);*/
    padding: 10px 10px;
    color: var(--text-black-color);
    font-size: 18px;
    margin-bottom: 0;
}

.student-profile-sidebar {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    padding: 20px;
    border-radius: 6px;
    background-color: #FFF;
}

.student-course-info {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    padding: 20px 30px;
    border-radius: 6px;
    background-color: #FFF;
}

.student-profile-share a {
    padding: 7px 12px;
    background-color: var(--background-grey-bg-color);
    border-radius: 6px;
    color: var(--text-blue-color);
}

.student-profile-share a svg.feather {
    margin: 0 0 0 10px;
    color: var(--text-blue-color);
}

.student-course-info .nav-search .form-control {
    width: 715px;
}

.student-course-info .nav-search .btn-primary {
    background-color: var(--background-red-bg-color);
}

.student-profile-main-block .view-heading a {
    width: 200px;
}

.import-main-block {
    background-color: #F6F7FC;
    padding: 60px 0;
}

.import-block {
    background-color: #FFF;
    padding: 40px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
    margin-bottom: 40px;
}

.import-block input {
    border-radius: 6px 0 0 6px;
}

.import-block .form-control {
    height: calc(1.75em + 0.75rem + 1.25px);
    padding: 0.25rem 0.5rem 0.25rem;
}

.import-block .btn-primary {
    padding: 8px 25px;
    border-radius: 0 6px 6px 0;
}

.import-block .widgetbar .btn-primary {
    border-radius: 6px;
    font-size: 14px;
    padding: 9px 25px;
}

.import-block .widgetbar .btn-primary svg.feather {
    color: #FFF;
    margin: 0 10px 0;
}

.import-job-block {
    background-color: #FFF;
    padding: 40px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.import-job-block .card {
    border: inherit;
    background-color: inherit;
}

.import-job-block .card-body {
    padding: 0;
}

.import-job-block .card-header {
    background-color: inherit;
    border: inherit;
    padding: 0;
}

.import-job-block .table td,
.import-job-block .table th {
    border-top: inherit;
    padding: 0.75rem 1.5rem;
}

.import-job-block .table {
    background-color: var(--background-grey-bg-color);
}

.import-job-block .table-striped tbody tr:nth-of-type(odd) {
    background-color: #FFF;
}

.import-job-block .table-striped tbody tr {
    background-color: #FFF;
}

.import-job-block .table-bordered td, .table-bordered th {
    border: inherit;
    border-top: 1px solid #dee2e6;
}

.import-job-block .table-responsive {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.newsletter-main-block {
    position: relative;
    top: -80px;
    height: 150px;
}

.newsletter-block {
    background: var(--linear-gradient-bg-color);
    padding: 50px;
    border-radius: 6px;
    margin-top: 80px
}

.newsletter-main-block input {
    background-color: #FFF;
    padding: 20px 20px;
    border: 1px solid #FFF;
    border-radius: 6px;
    width: 100%;
    position: relative;
    text-align: right;
}

.newsletter-main-block input:focus-visible {
    outline: none;
}

.newsletter-main-block .btn-primary {
    border-radius: 6px;
    position: absolute;
    left: 30px;
    top: 10px;
    padding: 10px;
}

.newsletter-heading {
    color: #FFF;
    padding: 10px 0 0;
    margin-bottom: 0;
}

.view-more-pages {
    padding: 60px 0;
}

.view-more-pages .view-user-img .user-img-one {
    bottom: 50%;
}

.view-more-pages .advance-badge .bg-primary {
    left: 30px;
}

.wishlist-cart svg.feather {
    margin: 0 !important;
}

.view-button {
    text-align: left;
}

@media (max-width: 767px) {
    .student-profile-img {
        text-align: center;
        margin-bottom: 20px;
    }

    .student-course-info {
        margin-bottom: 24px;
    }

    .wrapper .panel-title a[aria-expanded="true"] i {
        float: right;
        margin-left: 10px;
        margin-right: 0;
    }

    .nav-bar-main-block .panel-title > a, .nav-bar-main-block .panel-title > a:active {
        text-align: right;
    }

    .newsletter-heading {
        margin-bottom: 30px;
        text-align: center;
    }

    .newsletter-block {
        padding: 20px;
    }

    .newsletter-main-block input {
        padding: 18px 7px;
    }

    .newsletter-main-block .btn-primary {
        border-radius: 6px;
        position: absolute;
        left: 25px;
        top: 10px;
        padding: 10px;
        font-size: 12px;
    }
}

.navigation-one ul li svg.feather {
    width: 20px;
    height: 20px;
}

.navigation-one > #cssmenu > ul > li > ul > li:hover > a {
    color: #F44A4A;
}

.navigation-one > #cssmenu > ul > li > ul > li > a > svg.feather {
    width: 16px;
    height: 16px;
    margin: 2px 10px 0 0;
}

.navigation-one > #cssmenu > ul > li > ul > li:hover > a > svg.feather {
    color: #F44A4A;
}

.affiliate-dashboard-main-block {
    background-color: #F6F7FC;
    padding: 50px 0;
}

.affiliate-dashboard-card {
    background-color: #FFF;
    padding: 40px 38px;
    border-radius: 6px;
    margin-bottom: 40px;
    height: 85%;
}

.affiliate-dashboard-wallet .title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 15px;
}

.affiliate-dashboard-wallet {
    background-color: #FFF;
    padding: 20px;
    border-radius: 6px;
}

.affiliate-dashboard-wallet-img {
    background-color: #F44A4A;
    border-radius: 100%;
    width: 50px;
    height: 50px;
}

.affiliate-dashboard-wallet-img img {
    padding: 7px 10px;
}

.affiliate-dashboard-wallet-dtl {
    padding: 5px;
}

.affiliate-dashboard-wallet-dtl h6 {
    margin-bottom: 5px;
}

.wallet-balance {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.affiliate_dashboard-chart {
    background-color: #FFF;
    padding: 40px;
    border-radius: 6px;
}

.view-button .btn-secondary {
    border: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 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;
}

.view-button .btn-secondary:hover {
    /*background-color: #F44A4A;*/
    color: #F44A4A;
    /*border: 1px 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;
}

.view-button .btn-secondary svg.feather {
    margin: 3px 0 0 3px;
    float: right;
    width: 16px;
    height: 16px;
    color: var(--text-dark-grey-color);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.view-button .btn-secondary:hover svg.feather {
    color: #F44A4A;
    transform: translate3d(5px, 0, 0);
}

.instructor-button .btn-secondary {
    border: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 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-button .btn-secondary:hover {
    /*background-color: #F44A4A;*/
    color: #F44A4A;
    /*border: 1px 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;
}

.instructor-button .btn-secondary svg.feather {
    margin: 2px 0 0 3px;
    width: 16px;
    height: 16px;
    float: right;
    color: var(--text-dark-grey-color);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.instructor-button .btn-secondary:hover svg.feather {
    color: #F44A4A;
    transform: translate3d(5px, 0, 0);
}

.advance-badge .badge {
    position: absolute;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 15px;
    top: 15px;
    right: 15px;
    border-radius: 6px;
}

.advance-badge .badge.bg-danger {
    color: #FFF;
    background-color: #F44A4A !important;
}

.advance-badge .badge.bg-warning {
    color: #29303b;
}

#blog-post-slider .tooltip {
    position: absolute;
    display: inline-block;
    opacity: 0;
    top: 10px;
    font-size: 18px;
    right: 15px;
    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;
}

#blog-post-slider .student-view-block:hover .tooltip {
    opacity: 1;
}

#blog-post-slider .tooltip .tooltip-icon svg.feather {
    margin: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px 0;
    width: 28px;
    height: 28px;
}

#blog-post-slider .tooltip .tooltip-icon svg.feather:hover {
    border: 1px solid #F44A4A;
    background-color: #F44A4A;
    color: #FFF;
}

#blog-post-slider .tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 1px 0px 5px;
    position: absolute;
    z-index: 1;
    bottom: -2px;
    left: 0;
    margin-left: -140px;
    opacity: 0;
    transition: opacity 0.3s;
}

#blog-post-slider .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 35%;
    right: -10px;
    margin-right: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}

#blog-post-slider .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#myModalshare .social-icon .fa-2x {
    font-size: 20px;
}

/* .categories-main-block {
  background-color: var(--background-grey-bg-color);
} */
.categories-main-block .cat-container {
    border-radius: 8px;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    background-color: #FFF;
    padding: 0 0 15px 0;
    position: relative;
    overflow: hidden;
}

.cat-img {
    padding: 20px 20px 15px;
}

.cat-container .cat-img img {
    width: 120px;
    height: 100px;
    object-fit: cover;
}

.cat-container .cat-dtl {
    left: 0;
    right: 0;
    bottom: 1.5rem;
    overflow: hidden;
    text-align: center;
}

.cat-container .cat-name {
    line-height: 1.45;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.cat-container .cat-name i {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

.cat-container .cat-img-count {
    color: var(--text-black-color);
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    left: 0;
    right: 0;
    text-align: center;
    top: 100%;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, transform 0.3s;
    transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.cat-container:hover {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cat-container:hover .cat-name {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.cat-container:hover .cat-img-count {
    top: 80%;
}

.cat-container .cat-img img {
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

.cat-container:hover .cat-img img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.heart-fill svg.feather:hover {
    background-color: var(--background-red-bg-color) !important;
    color: #FFF !important;
    border: 1px solid #F44A4A;
    width: 28px;
    height: 28px;
}

.about-transforming-main-block .tab-img {
    border-radius: 6px 6px 0 0;
}

.about-transforming-main-block .nav-tabs .nav-link {
    border: inherit;
}

.about-transforming-main-block .card-body {
    padding: 0;
    border-radius: 6px;
}

.about-facts .facts-block {
    padding: 10px 0 15px;
}

.together-img .protip-wishlist {
    margin-left: 30px;
}

.together-img .protip-wishlist ul li {
    padding: 0;
}

.qr-code-block .qr-code-title {
    font-size: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 15px;
}

.qr-code-block .card {
    border: inherit;
    border-radius: 6px;
}

.qr-code-block .card-header {
    background-color: inherit;
    border-bottom: inherit;
    padding: 0.75rem 1.25rem 0.5rem;
}

.qr-code-block .card-body {
    text-align: center;
    padding: 0;
}

.immi-slider-block .protip-wish-btn-two svg.feather {
    opacity: 0;
}

.view-user-img .user-img-one.user-img-two {
    bottom: 41%;
}

.user-img-three {
    bottom: 50% !important;
}

.view-footer-all-profile .rate ul li i {
    margin-right: 0;
}

.view-footer-all-profile .rate ul {
    line-height: 0.5;
}

.immi-slider-block .img-wishlist .protip-wishlist ul li {
    padding: 0;
}

.immi-slider-block .view-user-img .user-img-one {
    left: 2%;
    bottom: 45%;
}

.together-img .view-user-img .user-img-one {
    margin-left: 0;
}

.mark-read-button .btn-primary {
    padding: 10px;
}

.home-search .nav-pills .nav-link {
    background-color: var(--background-blue-bg-color);
    color: #FFF;
    margin-right: 10px;
    border-radius: 20px;
}

.home-search .nav-pills .nav-link.active {
    background-color: var(--background-red-bg-color);
    color: #FFF;
    margin-right: 10px;
}

.home-search .searchTerm:focus {
    color: #686F7A;
}

@media (max-width: 767px) {
    .affiliate-dashboard-wallet {
        margin-bottom: 40px;
    }

    .affiliate_dashboard-chart {
        padding: 20px;
    }

    .course-bought-img {
        margin-bottom: 15px;
    }

    .instructor-profile-block {
        margin-bottom: 30px;
    }

    .qr-code-block {
        margin-bottom: 40px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .patners-block {
        padding: 40px 0;
    }
}

.container-xl {
    padding-right: 20px;
    padding-left: 20px;
}

#zoom-view-slider .img-circle {
    width: 30px !important;
}

.social-link .social-icon.facebook-icon i:hover {
    background-color: #103456;
}

.social-link .social-icon.google-icon i:hover {
    background-color: #BE3223;
}

.social-link .social-icon.amazon-icon i:hover {
    background-color: #CC7A00;
}

.social-link .social-icon.linkedin-icon i:hover {
    background-color: #095071;
}

.social-link .social-icon.twitter-icon i:hover {
    background-color: #128DBA;
}

.social-link .social-icon.gitlab-icon i:hover {
    background-color: #111418;
    color: #FFF;
}

.gift-main-block img {
    width: 100%;
}

.expand-content {
    padding: 10px 0 0;
}

.instructor-subscription-block {
    background-color: #FFF;
    padding: 40px 0 20px;
}

.instructor-subscription-block .view-img img {
    border-radius: 6px 6px 0 0;
}

.instructor-subscription-block .view-block {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
}

.plan-name {
    font-size: 13px;
    font-weight: 600;
}

.inst-allowed-courses-name {
    font-size: 13px;
    font-weight: 600;
}

.inst-allowed-courses {
    font-size: 13px;
}

.inst-duration-course-name {
    font-size: 13px;
    font-weight: 600;
}

.inst-duration-courses {
    font-size: 13px;
}

.inst-duration-course .rate-r {
    font-weight: 400;
    font-size: 12px;
}

.inst-duration-course ul li {
    font-size: 12px;
}

.instructor-subscription-block .view-heading a {
    font-size: 13px;
    font-weight: 400;
}

.plan-subs-btn .btn-primary {
    width: 100%;
    background-color: var(--background-blue-bg-color);
    padding: 5px 10px;
    border-radius: 6px;
}

.batch-dtl p {
    font-size: 13px;
}

.batch-dtl #myBtn2 {
    background-color: inherit;
    border: inherit;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-red-color);
}

.user-name .user-title {
    display: inline-block;
}

.user-name ul {
    display: inline-block;
}

.user-name ul li {
    display: inline-block;
}

.user-name ul li a {
    color: var(--text-red-color);
}

.batch-main-block {
    padding: 60px 0;
}

.affiliate-dashboard-card .card-body {
    padding: 0;
}

.affiliate-dashboard-card .card-text {
    font-size: 13px;
}

.qr-code-block .card-body svg {
    width: 170px;
    height: 170px;
}

.affiliate-dashboard-card .input-group input {
    font-size: 13px;
    padding: 22px 10px;
}

.qr-code-block {
    margin-bottom: 30px;
}

.dashboard-items {
    margin-bottom: 30px;
}

.prod.grid-view .advance-badge .badge {
    right: 15px;
}

.batch-btn .btn-primary {
    padding: 5px 10px;
    font-size: 13px;
}

.batch-dtl-main-block {
    padding: 50px 0 60px;
}

.batch-dtl-block {
    background-color: #FFF;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
    padding: 40px;
}

.batch-dtl-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.batch-detail-block {
    padding: 40px 0 0;
}

.batch-detail-block p {
    font-size: 13px;
    color: var(--text-dark-grey-color);
}

.batch-main-block .view-heading a {
    font-size: 18px;
}

.search-main-block .categories-popularity-dtl p {
    color: var(--text-dark-grey-color);
    margin-bottom: 15px;
}

.search-main-block .view-user-img .user-img-one {
    bottom: 50%;
}

.job-personal-info svg.feather {
    margin: 0 10px 0;
}

.submit-btn.print svg.feather {
    margin: 0 10px 0 0;
}

.cart-course-detail .cart-course-name a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black-color);
}

.cart-add-block .cart-course-name {
    margin-bottom: 10px;
}

.cart-heading {
    font-weight: 700;
}

.cart-total {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    border-radius: 6px;
    background-color: #FFF;
    padding: 20px;
}

.checkout-btn {
    margin-right: 25px;
}

.cart-items {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    padding: 20px;
    border-radius: 6px;
}

.checkout-payment-block {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    padding: 20px 40px;
    border-radius: 6px;
}

.checkout-main-block {
    background-color: #F2F3F5;
}

.payment-gateways .card {
    margin-bottom: 10px;
}

.payment-gateways .card-header:first-child {
    border-radius: 6px 6px 0 0;
}

.checkout-course-img img {
    border-radius: 6px;
}

.checkout-course-title a {
    font-size: 14px;
    color: var(--text-black-color);
    font-weight: 500;
}

.checkout-course-user,
.checkout-course-user span a {
    font-size: 12px;
}

.form-wizard .wizard-fieldset .form-control {
    border-radius: 6px;
    font-size: 13px;
    padding: 8px 0 8px 16px;
    border: 1px solid #ced4da;
    background-color: inherit;
    height: inherit;
}

.form-wizard .form-wizard-next-btn,
.form-wizard .form-wizard-previous-btn,
.form-wizard .form-wizard-submit {
    border-radius: 6px;
}

.form-wizard .wizard-form-error {
    background-color: inherit !important;
}

.form-wizard .wizard-fieldset .custom-file .form-control {
    padding: 5px 0 5px 16px;
}

.job-view-page {
    padding: 50px 0;
}

.job-view-page .card {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    border-radius: 6px;
    border: inherit;
}

.cancel-button .btn-primary {
    padding: 8px 15px;
}

.navigation-one #cssmenu ul ul li a {
    width: 200px;
}

.navigation #cssmenu {
    float: right;
}

.navigation.navigation-one #cssmenu {
    float: left;
}

@media (min-width: 1500px) {
    .container-xl {
        max-width: 1400px;
    }
}

/* .job-pricing-plan-main-block {
  padding: 60px 0;
  background-color: #F2F3F7;
} */
.job-professional-main-block .section-title {
    font-size: 40px;
}

.job-professional-main-block p {
    font-size: 20px;
    font-weight: 500;
}

/* .pricing-rates {
  height: 100%;
  background: #F44A4A;
  color: #161C2D;
  border-radius: 292px 33px 0 0;
  text-align: center;
  position: relative;
  padding-top: 1px;
  transition: .5s all ease;
}
.pricing-rates:hover {
  border-radius: 33px 292px 0 0;
}
.pricing-rates-heading {
  background: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  padding: 8px 0;
  margin: 40px 0 0 160px;
  text-transform: uppercase;
  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;
}
.pricing-rates:hover .pricing-rates-heading {
  color: #161C2D;
}
.pricing-rates-block {
  width: 96px;
  height: 96px;
  background: #fff;
  border: 5px solid #F44A4A;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 70px;
}
.pricing-features {
  width: 100%;
  margin: 90px 0 160px 0;
}
.display-price-dollor {
  font-size: 17px;
  font-weight: 700;
  margin: -30px 0 0;
}
.display-price {
  font-size: 30px;
  font-weight: 700;
  margin-top: -15px;
}
.offer-price-dollor {
  left: 26px;
}
.offer-price {
  left: 36px;
}
.offer-price-dollor, .offer-price {
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 18px;
}
.pricing-btn.btn-primary {
  width: 200px;
  height: 58px;
  background: #FFF;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border-radius: 52px 0 0 0;
  padding: 16px 12px;
  border: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
.pricing-btn.btn-primary:hover {
  background: #FFF;
  color: #161C2D;
}
.starter-plan .display-price {
  margin-top: -5px;
  font-size: 28px;
}
.starter-plan .display-price-dollor {
  margin: -25px 0px 0px 3px;
}
.pricing-features li {
  font-weight: 600;
  text-align: left;
  margin-bottom: 15px;
  margin-left: 100px;
  color: #FFF;
}
.pricing-features li i {
  color: #FFF;
  font-size: 7px;
  margin-right: 10px;
  vertical-align: middle;
}
.pricing-rates svg.feather {
  width: 10px;
  height: 10px;
  margin: 0 10px 0;
  color: #FFF;
  background: #FFF;
  border-radius: 100%;
} */
.job-section {
    margin-bottom: 50px;
}

.job-professional-main-block {
    padding: 60px 0;
}

.job-professional-img {
    position: relative;
    border-radius: 6px;
}

.job-professional-img-one {
    position: absolute;
    top: 11%;
    left: 15%;
}

.job-professional-dtl {
    position: absolute;
    top: 32%;
    right: 10%;
}

.job-professional-title {
    color: #FFF;
    margin-bottom: 25px;
}

.job-professional-dtl .btn-primary {
    width: 100%;
    padding: 12px 25px;
    background-color: var(--background-blue-bg-color);
}

.job-professional-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.job-professional-img-one img {
    width: 100%;
    height: 265px;
}

.job-find-img {
    position: relative;
}

.job-find-img img {
    border-radius: 6px;
}

.job-find-img-one {
    position: absolute;
    top: 2%;
    left: 8%;
}

.job-find-img-one img {
    height: 130px;
}

.job-find-title {
    position: absolute;
    top: 28%;
    left: 0;
    right: 0;
    text-align: center;
}

.job-find-title a {
    color: var(--text-white-color);
    font-size: 40px;
}

.job-find-icon {
    position: absolute;
    top: 28%;
    right: 5%;
}

.job-find-icon svg.feather {
    color: var(--text-white-color);
    margin: 10px 0;
    width: 40px;
    height: 40px;
}

.job-find-main-block {
    margin-bottom: 80px;
}

.job-everyone-main-block {
    background-color: var(--background-grey-bg-color);
    padding: 60px 0;
}

.job-everyone-img img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
}

.job-everyone-block {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    padding: 20px;
    border-radius: 6px;
}

.job-everyone-dtl {
    padding: 10px 0 0;
}

.job-everyone-title {
    margin-bottom: 0;
}

.job-everyone-title a {
    font-size: 16px;
    color: var(--text-black-color);
}

.job-everyone-icon svg.feather {
    margin: 20px 0;
    width: 25px;
    height: 25px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.job-everyone-block:hover .job-everyone-icon svg.feather {
    transform: translate3d(20px, 0, 0);
}

.search-for-job-main-block {
    padding: 60px 0;
}

.label-icon {
    position: absolute;
    top: 7px;
}

.label-icon svg.feather {
    margin: 0 10px;
}

.search-for-job-main-block .form-control {
    padding: 5px 0 5px 35px;
    border: inherit;
}

.search-for-job-block {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    padding: 15px 30px;
    border-radius: 40px;
}

.search-for-job-btn .btn-primary {
    padding: 8px 78px;
    border-radius: 20px;
}

.search-for-job-block .form-group {
    margin-bottom: 0;
}

.border-line {
    border-right: 1px solid #F2F3F5;
    padding-right: 20px;
}

.get-job-main-block {
    background-color: var(--background-grey-bg-color);
    padding: 60px 0;
}

.get-job-block {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    background-color: #FFF;
    padding: 30px 0;
    border-radius: 6px;
}

.get-job-icon svg.feather {
    background-color: var(--background-red-bg-color);
    color: var(--text-white-color);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin: 0 0 20px 0;
}

.get-job-title {
    margin-bottom: 0;
}

.recommendations-block ul li svg.feather {
    color: var(--text-white-color);
    margin: 0 10px 0 0;
}

.job-plan-trusted {
    padding: 60px 0;
}

.job-plan-trusted .patners-heading {
    font-size: 28px;
}

.job-plan-testimonial {
    padding: 60px 0;
}

.job-plan-testimonial .job-section {
    margin-bottom: 30px;
}

.job-plan-recommendation .recommendations-heading {
    margin-bottom: 20px;
}

.job-plan-recommendation ul li {
    margin-bottom: 10px;
}

.job-plan-recommendation .recommendation-btn {
    margin-top: 40px;
}

.job-plan-recommendation .recommendations-block {
    padding: 75px;
}

.job-plan-trusted-one {
    padding: 60px 0;
}

.job-plan-faq {
    padding: 60px 0;
    background-color: var(--background-grey-bg-color);
}

.job-plan-faq .card {
    background-color: inherit;
    margin-bottom: 20px;
    border: inherit;
    background-color: var(--background-white-bg-color);
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

.job-plan-faq .card-header {
    background-color: var(--background-red-bg-color);
    border-bottom: inherit;
}

.job-plan-faq .btn-link {
    border-color: inherit;
    border: inherit;
    color: var(--text-white-color);
    font-size: 18px;
    padding: 0;
}

.job-plan-faq .card svg.feather {
    margin: 4px 30px 0 0;
    color: #FFF;
    display: block;
    float: left;
}

.job-plan-faq .accordion-button:not(.collapsed) svg.feather-plus {
    display: none;
}

.job-plan-faq .accordion-button:not(.collapsed) svg.feather-minus {
    display: block;
}

.job-plan-faq .card svg.feather-minus {
    display: none;
}

.job-plan-faq .btn-link:hover {
    color: var(--text-white-color);
}

.job-plan-faq .btn-link:focus {
    text-decoration: none;
}

.pricing-btn-one {
    background-color: #FFF !important;
    color: #F44A4A !important;
}

#multi-step-form-container {
    margin-top: 2rem;
    background-color: #FFF;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    padding: 50px 30px;
    border-radius: 6px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pl-0 {
    padding-left: 0;
}

.btn-navigate-form-step {
    padding: 7px 25px;
    border: 1px solid var(--background-red-bg-color);
    background-color: var(--background-red-bg-color);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn {
    border: 1px solid #0e9594;
    background-color: #0e9594;
}

.mt-3 {
    margin-top: 2rem;
}

.d-none {
    display: none;
}

.form-step {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 3rem;
}

.font-normal {
    font-weight: normal;
}

ul.form-stepper {
    counter-reset: section;
    margin-bottom: 3rem;
}

ul.form-stepper .form-stepper-circle {
    position: relative;
}

ul.form-stepper .form-stepper-circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.form-stepper-horizontal {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

ul.form-stepper > li:not(:last-of-type) {
    margin-bottom: 0.625rem;
    -webkit-transition: margin-bottom 0.4s;
    -o-transition: margin-bottom 0.4s;
    transition: margin-bottom 0.4s;
}

.form-stepper-horizontal > li:not(:last-of-type) {
    margin-bottom: 0 !important;
}

.form-stepper-horizontal li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.form-stepper-horizontal li:not(:last-child):after {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    content: "";
    top: 50%;
}

.form-stepper-horizontal li:after {
    background-color: #F6F7FC;
}

.form-stepper-horizontal li.form-stepper-completed:after {
    background-color: var(--background-red-bg-color);
}

.form-stepper-horizontal li:last-child {
    flex: unset;
}

ul.form-stepper li a .form-stepper-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 0;
    line-height: 1.7rem;
    text-align: center;
    background: #F6F7FC;
    border-radius: 50%;
    vertical-align: middle;
}

.form-stepper .form-stepper-active .form-stepper-circle {
    background-color: var(--background-blue-bg-color) !important;
    color: #fff;
}

.form-stepper .form-stepper-active .label {
    color: var(--text-blue-color) !important;
}

.form-stepper .form-stepper-active .form-stepper-circle:hover {
    background-color: var(--background-blue-bg-color) !important;
    color: #fff !important;
}

.form-stepper .form-stepper-unfinished .form-stepper-circle {
    background-color: #F6F7FC;
}

.form-stepper .form-stepper-completed .form-stepper-circle {
    background-color: var(--background-red-bg-color) !important;
    color: #fff;
}

.form-stepper .form-stepper-completed .label {
    color: var(--text-red-color) !important;
}

.form-stepper .form-stepper-completed .form-stepper-circle:hover {
    background-color: var(--background-red-bg-color) !important;
    color: #fff !important;
}

.form-stepper .form-stepper-active span.text-muted {
    color: #fff !important;
}

.form-stepper .form-stepper-completed span.text-muted {
    color: #fff !important;
}

.form-stepper .label {
    display: inline-block;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-stepper a {
    cursor: default;
}

#multi-step-form-container .form-check {
    padding-left: 0;
}

#multi-step-form-container .form-check ul {
    padding-left: 20px;
}

#multi-step-form-container .form-check ul li {
    display: inline-block;
}

.form-step .form-check input[type='radio'] {
    vertical-align: middle;
}

#msform-one .form-check input[type='radio'] {
    vertical-align: middle;
}

.form-step .form-control {
    font-size: 13px;
    height: 40px;
}

.form-step span.ml-2 {
    font-size: 14px;
}

.form-step .submit-btn {
    padding-top: 0;
}

.job-pricing-plan-block .card {
    border-radius: 6px;
    background-color: #FFF;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    padding: 40px 15px;
    border: inherit;
}

.job-pricing-plan-block .card .list-group-item {
    border: inherit;
    padding: 0;
    color: var(--text-dark-grey-color);
    font-size: 14px;
    padding: 5px 0;
}

.job-pricing-plan-block .card .list-group-item svg.feather {
    margin: 0 10px 0 0;
    width: 14px;
    height: 14px;
}

.pricing-top h4 {
    color: var(--text-red-color);
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-top img {
    width: 150px;
}

.display-price-block {
    display: inline-block;
}

.display-price-dollor {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-red-color);
}

.display-price-dollor sup {
    top: -0.75em;
}

.display-price {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-red-color);
}

.offer-price-dollor, .offer-price {
    font-size: 14px;
    font-weight: 500;
}

.offer-price-dollor, .offer-price {
    font-size: 16px;
    font-weight: 500;
}

.offer-price-block {
    line-height: 1;
}

.pricing-rates-block {
    margin-bottom: 30px;
}

.pricing-middle {
    margin-bottom: 30px;
}

.pricing-btn .btn-primary {
    padding: 8px 20px;
    border-radius: 6px;
}

.post-job-btn {
    margin-bottom: 20px;
}

.post-job-btn .btn-primary {
    width: 100%;
    padding: 10px 20px;
}

.job-application-block {
    border-radius: 6px;
    background-color: #FFF;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    padding: 20px 0;
}

.application-tab .nav-tabs {
    padding: 0;
    border-bottom: 0;
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 10%);

}

.application-tab .nav-tabs .nav-link {
    border: inherit;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    color: var(--text-black-color);
    font-size: 16px;
    font-weight: 500;
}

.application-tab .nav-tabs .nav-link.active {
    border-color: inherit;
    color: var(--text-red-color);
    border-bottom: 2px solid var(--background-red-bg-color);
}

.employer-login_popup .modal-dialog {
    max-width: 800px !important;
    margin: 150px auto;
}

.employer-login_popup .modal-dialog-scrollable .modal-content {
    max-height: 450px;
}

.employer-login_popup .modal-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.employer-login_popup .modal-title {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 18px;
}

.employer-login_popup p {
    font-size: 13px;
}

.employer-login_popup .nav-tabs {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 30px;
}

.employer-login_popup .nav-tabs .nav-item {
    width: 350px;
}

.employer-login_popup .nav-tabs .nav-link {
    border: inherit;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    color: var(--text-black-color);
    font-size: 16px;
    font-weight: 500;
}

.employer-login_popup .nav-tabs .nav-link.active {
    border-color: inherit;
    color: var(--text-red-color);
    border-bottom: 2px solid var(--background-red-bg-color);
}

.employer-login_popup .form-check {
    padding-left: 0;
}

.employer-login_popup .form-check input[type='radio'] {
    vertical-align: middle;
}

.employer-login_popup .modal-content {
    border: inherit;
}

.employer-login_popup .modal-footer {
    border-top: inherit;
    border-radius: 0;
    display: block;
    padding: 0;
}

.employer-login_popup .modal-footer .btn-primary {
    width: 100%;
}

.application-dtl-block {
    margin: 20px 40px;
    padding: 20px 30px;
    border: 1px solid #F6F7FC;
    border-radius: 6px;
}

.application-img img {
    border-radius: 100%;
}

#more {
    display: none;
}

.application-cat button {
    border: 0;
    background: inherit;
    color: var(--text-red-color);
    padding: 0;
    transition: 0.5s;
    font-size: 14px;
}

.application-dtl p a {
    display: block;
    color: var(--text-dark-grey-color);
    margin-bottom: 5px;
}

.application-dtl p a svg.feather {
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
    color: var(--text-dark-grey-color);
}

.application-dtl p a i {
    color: var(--text-dark-grey-color);
    margin-right: 10px;
    font-weight: 600;
    font-size: 17px;
    vertical-align: middle;
}

.whtasapp-no-btn {
    padding: 30px 0;
}

.whtasapp-no-btn .number {
    background-color: var(--background-white-bg-color);
    border: 1px solid var(--text-red-color);
    color: var(--text-red-color);
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.whtasapp-no-btn .number.phone-no {
    letter-spacing: 1px;
}

.whtasapp-no-btn li {
    display: inline-block;
    margin-right: 10px;
}

.whatsapp-btn {
    background-color: var(--background-white-bg-color);
    border: 1px solid var(--text-red-color);
    color: var(--text-dark-grey-color);
    padding: 7px 12px;
    border-radius: 6px;
}

.whatsapp-btn img {
    width: 18px;
    height: 18px;
}

.reject-btn {
    background-color: var(--background-dark-grey-color);
    border: 1px solid var(--text-dark-grey-color);
    color: var(--text-dark-grey-color);
    padding: 7px 12px;
    border-radius: 6px;
}

.reject-btn svg.feather {
    color: var(--text-dark-grey-color);
    margin: 0 10px 0 0;
}

.application-notes {
    padding: 30px 0;
}

.application-notes a {
    color: var(--text-black-color);
}

.application-notes svg.feather {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
}

.apply-date {
    color: var(--text-light-grey-color);
    font-size: 14px;
}

.apply-date svg.feather {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
    color: var(--text-light-grey-color);
}

.application-name {
    margin-bottom: 5px;
}

.show-no-text svg.feather {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
    color: var(--text-dark-grey-color);
}

.show-no-text .myText {
    display: none;
    font-size: 14px;
    color: var(--text-dark-grey-color);
}

.status-select .form-control {
    font-size: 14px;
}

.show-resume-btn .btn-primary {
    background-color: inherit;
    color: var(--text-blue-color);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin-top: 10px;
}

.show-resume-btn svg.feather {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
    color: var(--text-dark-grey-color);
}

.no-badges {
    display: none;
}

.no-badges svg.feather {
    color: var(--text-red-color);
}

.no-badges span {
    color: var(--text-black-color);
    font-weight: 600;
}

.no-badges {
    color: var(--text-dark-grey-color);
    font-size: 14px;
}

.employer-login-btn .btn-primary {
    padding: 7px 15px;
}

.employer-login-btn {
    margin: 7px 0;
}

.job-post-nav-bar .dropdown-menu-right {
    width: 200px;
}

#myModalprofile .modal-header {
    padding: 0;
    border-bottom: inherit;
    border-radius: 0;
    border: inherit;
}

#myModalprofile .modal-content {
    border: inherit;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

#myModalprofile .modal-content button.close {
    position: absolute;
    top: -40px;
    right: 0;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    background: inherit;
    color: #000;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

#myModalprofile .modal-content button.close svg.feather {
    width: 24px;
    height: 24px;
    margin: 0;
}

#myModalprofile .modal-content button.close:hover {
    opacity: 1;
    -webkit-transform: rotateZ(90deg) scale(1.5);
    transform: rotateZ(90deg) scale(1.5);
}

.edit-btn .btn-primary {
    padding: 5px 20px;
}

.save-btn .btn-primary {
    padding: 5px 15px;
}

.detail-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.company-dtl-no {
    width: 48%;
    display: inline-block;
    margin-right: 10px;
}

#myModalprofile .btn-primary {
    padding: 7px 15px;
}

#myModalprofile .modal-body {
    padding: 1rem 2rem;
}

#myModalprofile .form-group .form-control {
    font-size: 14px;
}

.background-slider-block.owl-carousel .owl-nav button.owl-prev {
    margin-left: 7px;
    margin-right: 97%;
}

.background-slider-block.owl-carousel .owl-nav button.owl-next {
    margin-left: 97%;
    margin-right: 13px;
}

.background-slider-block.owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

.background-slider-block.owl-carousel button.owl-dot {
    background: var(--background-white-bg-color);
    width: 40px;
    height: 10px;
    border-radius: 10px;
    margin-right: 10px;
}

.background-slider-block.owl-carousel button.owl-dot.active {
    background: var(--linear-gradient-bg-color) !important;
}

.instructor-home-block .instructor-home-hover-icon ul li {
    margin-bottom: 6px;
}

.instructor-home-btn svg.feather {
    margin: 0;
    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 100%;
    padding: 5px 0;
    width: 28px;
    height: 28px;
}

#instructor-home-two .instructor-home-dtl {
    margin-bottom: 30px;
    transform: translate(0, 11px);
    -webkit-transform: translate(0, 11px);
    -moz-transform: translate(0, 11px);
    -ms-transform: translate(0, 11px);
    -o-transform: translate(0, 11px);
}

#instructor-home-two .instructor-home-block:hover .instructor-home-dtl {
    transform: translate(0, 11px);
    -webkit-transform: translate(0, 11px);
    -moz-transform: translate(0, 11px);
    -ms-transform: translate(0, 11px);
    -o-transform: translate(0, 11px);
}

.tooltip {
    position: relative;
    opacity: 1;
}

.plan-title {
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 10%);
}

.create-job-portal .post-job-btn {
    text-align: center;
}

.create-job-portal .post-job-btn .btn-primary {
    width: auto;
}

.job-pricing-plan-main-block {
    padding: 60px 0;
}

.job-pricing-plan-main-block .list-group-item svg.feather {
    width: 8px !important;
    height: 8px !important;
    margin: 0 10px 0;
    color: var(--text-red-color);
    background: #F44A4A;
    border-radius: 100%;
}

.pricing-btn-one {
    background-color: #0284a2 !important;
    color: #FFF !important;
}

.job-edit-page {
    padding: 60px 0;
}

.form-step .submit-btn {
    color: #FFF;
    padding: 7px 20px;
    font-size: 15px;
}

.create-job-portal .badge {
    padding: 4px 8px;
}

.scrollbar {
    margin-left: 30px;
    float: left;
    height: 300px;
    width: 100%;
    background: #F5F5F5;
    overflow-y: scroll;
    margin-bottom: 25px;
}

#style-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#style-1::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

#style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.logo-footer {
    padding: 10px 0;
}

@media (max-width: 767px) {
    .navigation ul li ul li svg.feather {
        color: #F44A4A;
        margin-left: 10px;
    }
}

.offer-badge {
    top: 35% !important;
}

.flash-countdown.bg_image_deal ul li {
    background-color: var(--background-red-bg-color);
    font-size: 55px;
}

.flash-countdown.bg_image_deal ul li .text-20 {
}

.flash-deals-page .overlay-bg {
    border-radius: 6px 6px 0 0;
    background: rgba(0, 0, 0, 0.3);
}

.flash-home-main-block .card {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
    border: inherit;
}

.flash-home-main-block .card img {
    border-radius: 6px 6px 0 0;
}

.flash-home-main-block {
    padding: 0 0 40px;
}

.flash-home-main-block .card .card-title {
    font-size: 0;
}

.flash-home-main-block .card .card-title a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-black-color) !important;
}

.flash-deal-price {
    font-size: 20px;
}

.flash-home-main-block hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.flash-home-main-block .btn-primary {
    padding: 5px 20px;
}

.flash-home-main-block .btn-primary svg.feather {
    color: #FFF;
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
}

.flash-deals-details {
    box-shadow: 3px 4px 7px 3px rgb(0 0 0 / 5%);
    border-radius: 6px;
    background-color: var(--background-white-bg-color);
    padding: 15px 0;
    margin-top: 30px;
}

.flash-deal-block p a span {
    font-size: 14px;
    color: var(--text-black-color);
}

.flash-deal-block p a {
    color: var(--text-red-color);
}

#countdown {
    margin-bottom: 60px;
}

.institute-detail-main-block {
    background-color: #F6F7FC;
    padding: 50px 0;
}

.institute-detail-block {
    background-color: var(--background-white-bg-color);
    padding: 50px 30px;
    border-radius: 6px;
}

.institute-detail-img {
    margin-bottom: 20px;
}

.institute-detail-block .institute-detail-img img {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    object-fit: cover;
}

.institute-detail-tab {
    background-color: #FFF;
    border-radius: 6px;
    padding: 30px;
}

.institute-detail-tab .nav-tabs {
    border-bottom: none;
    margin-bottom: 30px;
}

.institute-detail-tab .nav-item {
    margin-right: 10px;
}

.institute-detail-tab .nav-tabs .nav-link {
    border: inherit;
    background-color: var(--background-red-bg-color);
    color: #FFF;
    border-radius: 6px;
}

#skill ul li {
    display: inline-block;
}

#affiliated ul li {
    display: inline-block;
}

.badges.bg-priamry {
    font-size: 10px;
    display: inline-block;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 50em;
    color: #f44a4a;
    font-weight: 600;
    line-height: 26px;
    position: absolute;
    background: #fff;
    z-index: 1;
    top: 30px;
    right: 10px;
    box-shadow: 2px 1px 6px 2px rgb(0 0 0 / 10%), 0 4px 4px 0px rgb(0 0 0 / 6%) !important;
}

.badges.bg-priamry span span {
    background-color: #fdd922;
    border-radius: 100%;
    border: 1px solid #FDD922;
    width: 31px;
    height: 31px;
    padding: 2px 2px;
    color: #f44a4a;
    display: inline-block;
    margin-right: 3px;
}

.genre-slide-image:hover .meeting-icon {
    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;
}

.institute-content-title {
    margin-bottom: 10px;
    text-align: center;
}

.institute-status .badge {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
}

.institute-verified .badge {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
}

#skill .badge {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #B2B6BD;
}

#affiliated .badge {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #B2B6BD;
}

.institute-detail-tab .rate ul li {
    line-height: 0 !important;
}

.institute-detail-tab .rate ul {
    line-height: 0.5;
}

.institute-detail-tab .view-user-img .user-img-one {
    bottom: 49%;
}

.instructor-profile-tabs .view-user-img .user-img-one {
    bottom: 49%;
}

.prod.grid-view .view-user-img .user-img-one {
    min-height: 50px;
    top: 88%;
}

.search-main-block .view-footer {
    border-top: 1px solid #DEDFE0;
    margin: 5px 15px 0;
    padding: 7px 0 6px;
    height: 55px;
}

.search-main-block .view-footer .rate ul li b {
    font-weight: 500;
    font-size: 14px;
}

.search-main-block .view-footer .rate ul li strike {
    font-size: 10px;
    display: inline-block;
    color: #29303B;
}

.search-main-block .view-footer .rate ul li {
    line-height: 1;
}

.search-main-block .view-footer .rate ul li {
    display: block;
    color: #29303B;
}

.search-main-block .view-footer .rate ul li {
    font-size: 18px;
}

.view-footer-list {
    margin: 0 !important;
    padding: 30px !important;
    border-top: none !important;
}

.advance-badge-list .badge {
    right: 30px !important;
}

.item-list .view-img a img {
    border-radius: 0 6px 6px 0;
    min-height: 160px;
}

.item-list {
    margin: 0 0 0 10px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%) !important;
}

@media (max-width: 767px) {
    .background-slider-block .home-main-block {
        padding: 30px 15px;
    }

    .recommendations-block {
        padding: 80px 30px;
    }

    .cat-container .cat-img img {
        width: 100px;
    }

    .institute-detail-block {
        margin-bottom: 30px;
    }

    .institute-detail-tab .nav-item {
        margin-bottom: 10px;
    }

    .flash-countdown.bg_image_deal ul li {
        font-size: 34px;
    }

    .bg_image_deal ul li .text-20 {
        font-size: 14px;
    }

}

@media (min-width: 767px) and (max-width: 992px) {
    .home-search .searchTerm {
        width: 60%;
    }

    .home-search .searchButton {
        width: 15%;
        left: 45%;
    }

    .recommendations-block {
        padding: 80px 20px;
    }

    .institute-detail-tab .nav-item {
        margin-bottom: 10px;
    }
}

.get-started-main-block {
    margin-bottom: 0px;
}

.get-started-bg-image {
    position: relative;
}

.get-started-dtl {
    position: absolute;
    margin: -16% auto;
    left: 0;
    right: 0;
}

.get-started-dtl .btn-primary {
    padding: 8px 15px;
}

.get-started-bg-image.parallax {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.get-started-bg-image .overlay-bg {
    background: rgba(0, 0, 0, 0.6);
}

.about-team-img img {
    width: 100%;
}

.parallax {
    min-height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-tags span {
    font-weight: 600;
    color: #000;
    margin-right: 7px;
}

.institute-detail-tab #instructor .instructor-profile-block {
    background-color: #F6F7FC;
    padding: 25px 5px;
}

.institute-detail-tab #instructor .instructor-profile-img img {
    width: 150px;
    height: 150px;
}

.testimonial-main-block {
    background-color: var(--background-grey-bg-color);
}

.testimonial-slider-main-block {
    padding: 10px 0;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testi-block img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-right: 20px;
    object-fit: cover;
    margin: 0 auto;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testi-block .testi-block-red-images img {
    width: 100%;
    border-radius: inherit;
    height: 100%;
    position: relative;
    -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;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testi-block .testi-block-white-images img {
    width: 100%;
    height: 400px;
    border-radius: inherit;
    position: absolute;
    margin-top: -94%;
    margin-left: -2%;
    object-fit: inherit;
    -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;
}

.testi-block-images {
    position: relative;
}

.testi-block-one {
    position: absolute;
    margin-top: -89%;
}

.testimonial-slider-main-block.owl-carousel.owl-drag .owl-item {
    margin-top: 30px;
}

.testi-img.text-center {
    margin-top: -1%;
    margin-bottom: 15px;
}

.testi-dtl p {
    font-size: 12px;
    padding: 20px 50px;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testi-block .testi-block-images img {
    width: 100%;
    height: 360px;
    border-radius: inherit;
    object-fit: inherit;
    -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;
}

.testimonial-slider-main-block.owl-carousel .owl-item .testi-block:hover .testi-block-images img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.services-main-block {
    padding: 50px 0;
}

.service-slider-main-block.owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
    text-align: left;
}

.service-block {
    height: 230px;
    border: 2px solid transparent;
    border-radius: 6px;
    background-color: #FFF;
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 2px 5px 5px 3px rgb(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;
}

.service-slider-main-block.owl-carousel.owl-drag .owl-item {
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-dtl p {
    font-size: 12px;
}

.service-img img {
    height: 80px;
    margin-bottom: 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;
}

.services-main-block-two {
    padding: 50px 0;
}

.service-block:hover {
    border: 2px solid var(--background-red-bg-color);
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

.service-heading {
    color: var(--text-black-color);
}

.service-dtl p {
    color: var(--text-black-color);

}

.service-side-img {
    position: relative;
}

.service-side-img img {
    height: 495px;
    object-fit: cover;
    border-radius: 6px;
}

.service-side-img .overlay-bg {
    border-radius: 6px;
}

.service-side-dtl {
    position: absolute;
    top: 25%;
    color: var(--text-white-color);
    left: 0;
    right: 0;
    margin: 0 30px;
}

.service-side-dtl .service-heading {
    color: var(--text-white-color);
}

.service-side-dtl .btn-primary {
    padding: 8px 15px;
}

.service-side-dtl svg.feather {
    color: var(--text-white-color);
    margin: 0 0 0 5px;
}

.feature-main-block {
    padding: 60px 0;
    background-color: var(--background-grey-bg-color);
}

.feature-dtl p {
    font-size: 12px;
}

.feature-img img {
    margin-bottom: 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;
}

.feature-main-block-two {
    padding: 50px 0;
}

.feature-dtl-icon {
    display: inline-block;
    float: right;
    margin-left: 20px;
}

.feature-dtl-icon img {
    width: 40px;
}

.feature-dtl {
    padding: 0 0 0 60px;
}

.feature-block {
    padding: 0 30px 30px;
}

.feature-dtl-block {
    padding: 0 30px;
}

.feature-dtl-block .btn-primary {
    padding: 8px 15px;
    margin-top: 20px;
}

.feature-dtl-block svg.feather {
    color: var(--text-white-color);
    margin: 0 0 0 5px;
}

.feature-image img {
    border-radius: 6px;
}

.user-alumini-main-block .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-top: 25px;
}

.user-alumini-main-block .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.user-alumini-main-block .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.user-alumini-main-block .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.user-alumini-main-block input:checked + .slider {
    background-color: #2196F3;
}

.user-alumini-main-block input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.user-alumini-main-block input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.user-alumini-main-block .slider.round {
    border-radius: 34px;
}

.user-alumini-main-block .slider.round:before {
    border-radius: 50%;
}

.user-alumini-main-block .btn-primary {
    padding: 5px 15px;
    margin-top: 15px;
}

.alumini-msg {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 40px;
}

.alumini-msg p {
    font-size: 16px;
}

.alumini-main-block {
    padding: 50px 0;
}

.alumini-block {
    border-radius: 6px;
    background-color: #FFF;
    box-shadow: 0 5px 5px 0 rgb(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;
}

.alumini-img img {
    border-radius: 6px 6px 0 0;
}

.alumini-dtl {
    padding: 20px 0;
}

.alumini-block .btn-primary {
    padding: 5px 15px;
}

.alumini-profile-main-block {
    background-color: #F6F7FC;
}

.alumini-profile-block {
    background-color: var(--background-white-bg-color);
    padding: 50px 30px;
    border-radius: 6px;
}

.alumini-profile-block .alumini-profile-img img {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    object-fit: cover;
}

.alumini-profile-video .video-item {
    text-align: center;
    border: 5px solid #FFF;
    color: var(--text-white-color) !important;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
}

.alumini-profile-video .video-device {
    position: relative;
}

.alumini-profile-video .video-device .bg_img {
    background-size: cover;
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.alumini-profile-video .video-item .video-preview,
.alumini-profile-video .video-item .video-preview iframe {
    width: 100%;
    height: 100%;
}

.alumini-profile-video .video-preview {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 30;
    width: 100%;
}

.alumini-profile-video .btn-video-play i {
    margin: 0 auto;
    padding-left: 7px;
    position: relative;
    top: 50%;
    left: 5%;
    transform: translate(-50%, -50%);
    z-index: 30;
    color: var(--text-white-color);
    font-size: 30px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, .6);
    height: 70px;
    width: 70px;
    line-height: 2.4;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.user-alumini-main-block .alumini-switch-block {
    text-align: right;
}

.alumini-switch {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.download-apk-main-block {
    padding: 60px 0;
    background-color: var(--background-grey-bg-color);
}

/* .download-apk-block {
  padding: 50px 0;
} */

.download-apk-img img {
    height: 200px;
}

.download-apk-img {
    margin-top: 50px;
}

.download-apk-main-block {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 500px;
    margin-bottom: 120px;
}

.download-apk-side-img img {
    height: 400px;
    text-align: center;
}

.apk-heading {
    color: var(--text-red-color);
}

.download-apk-side-img {
    padding: 0 0 0 100px;
    text-align: left;
}

.landing-video {
    padding: 0;
}

.landing-get-started {
    margin-bottom: 0;
} 

.apk-heading,
.alumini-heading,
.download-title,
.service-heading,
.testi-heading
{
    text-align: center;
}


#cssmenu > ul > li {
    float: right !important;
    margin-right: 30px;
}

@media (max-width: 767px) {

    .landing-nav-bar .logo {
        text-align: center !important;
    }

    .nav-bar-main-block.landing-nav-bar .logo .img-fluid {
        margin-top: 0;
        height: 35px;
    }

    .testi-img.text-center {
        margin-top: -32%;
    }

    .testi-dtl p {
        padding: 0 50px;
    }

    .service-side-img {
        margin-bottom: 30px;
    }

    .get-started-dtl {
        margin: -68% auto;
    }

    .feature-block {
        padding: 0 0 30px;
    }

    .feature-dtl-block {
        margin-bottom: 30px;
        padding: 0;
    }

    .download-apk-side-img {
        display: none;
    }

    .apk-heading {
        font-size: 15px;
    }

    .download-apk-img img {
        height: 150px;
    }

    .service-side-dtl {
        top: 20%;
    }

    .alumini-block {
        margin-bottom: 30px;
    }

    .alumini-profile-block {
        margin-bottom: 30px;
    }

    .user-alumini-main-block .alumini-switch-block {
        text-align: left;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .testi-img.text-center {
        margin-top: -15%;
    }

    .get-started-dtl {
        margin: -30% auto;
    }

    .download-apk-side-img {
        padding: 0 0 0 50px;
    }

    .service-side-dtl {
        top: 12%;
    }

    .alumini-block {
        margin-bottom: 30px;
    }
}

.certificate-img {
    position: relative;
}

.certificate-img img {
    border-radius: 6px;
    width: 100%;
    height: 700px;
}

.certificate-detail {
    position: absolute;
    top: 12%;
    left: 34%;
    right: 9%;
}

.certificate-bottom {
    position: absolute;
    bottom: 14%;
    left: 6%;
    right: 6%;
    margin: 0 20px;
}

.company-logo {
    margin: 0 auto;
}

.company-logo img {
    width: 200px;
}

.certificate-heading {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
}

.certificate-heading span {
    font-size: 60px;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 4px;
    font-weight: 600;
    color: #E65A1D;
}

.certificate-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.certificate-name {
    font-size: 44px;
    color: #1B7EC1;
    font-family: 'Dancing Script', cursive;
    text-align: center;
}

.company-logo {
    margin-top: 30px;
}

.certificate-date ul li {
    font-size: 16px;
}

.certificate-date ul li.date ,
.certificate-signature ul li.signature{
    font-size: 20px;
    font-weight: 500;
}


.certificate-date {
    margin-top: 37px;
}

.certificate-serial-number {
    position: absolute;
    bottom: 13%;
    left: 5%;
    right: 5%;
    margin: 0 20px;
}

.certificate-signature ul hr,
.certificate-date ul hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.recipient-block .img-circle {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

@media (max-width: 767px) {
    /* .certificate-img {
    margin-bottom: 40px;
  }
  .certificate-heading span {
    font-size: 28px;
  }
  .certificate-heading {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .certificate-title {
    font-size: 18px;
  }
  .certificate-name {
    font-size: 34px;
  }
  .certificate-detail p {
    font-size: 12px;
  }
  .certificate-img img {
    height: 850px;
  }
  .certificate-bottom {
    bottom: 7%;
  }
  .company-logo {
    text-align: center;
  }
  .certificate-detail {
    left: 30%;
  }
  .company-logo {
    margin-bottom: 20px;
  }
  .company-logo img {
    width: 180px;
  }
  .certificate-date {
    margin-top: 36px;
  } */
    .certificate-responsive {
        display: none;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .certificate-heading {
        font-size: 24px;
    }

    .certificate-heading span {
        font-size: 42px;
    }

    .certificate-heading {
        margin-bottom: 50px;
    }

    .certificate-detail {
        top: 5%;
        left: 30%;
    }

    .certificate-name {
        font-size: 40px;
    }

    .certificate-bottom {
        bottom: 13%;
    }

    .certificate-date {
        margin-top: 36px;
    }

    .company-logo img {
        width: 170px;
    }
}

hr {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/*slider responsive*/
.home-main-block {
    padding: 45px 25px;
    height: 582px;
}

@media (max-width: 1325px) {
    .home-main-block {
        height: 520px;
    }

}

@media (max-width: 1295px) {
    .home-main-block {
        height: 470px;
    }

}

@media (max-width: 1115px) {
    .home-main-block {
        height: 400px;
    }

}

@media (max-width: 986px) {
    .home-main-block {
        height: 350px;
    }

}

@media (max-width: 891px) {
    .home-main-block {
        height: 326px;
    }

}

@media (max-width: 816px) {
    .home-main-block {
        height: 300px;
    }

}

@media (max-width: 767px) {
    .home-main-block {
        height: 277px;
    }

}

@media (max-width: 683px) {
    .home-main-block {
        height: 226px;
    }

}

@media (max-width: 587px) {
    .home-main-block {
        height: 203px;
    }

}

@media (max-width: 450px) {
    .home-main-block {
        height: 160px;
    }

}
