﻿
/* :: 1.0 Import Fonts */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Raleway:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,600&display=swap");
/* :: 2.0 Import All CSS */
@import url(inc/bootstrap.min.css);
@import url(inc/owl.carousel.min.css);
@import url(inc/animate.css);
@import url(inc/magnific-popup.css);
@import url(fontawesome/css/all.min.css);
@import url(inc/classy-nav.min.css);
/* :: 3.0 Base CSS */
* {
    margin: 0;
    padding: 0;
}

body {
    font-weight: 200;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

    html, body {
        height: 100%;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: rgba(0, 0, 0, 0.8);
        line-height: 1.3;
        font-weight: 700;
    }

    p {
        /*font-family: "Raleway", sans-serif;*/
        color: #5a5a5a;
        font-size: 14px;
        line-height: 1.8;
        font-weight: 400;
    }

    a,
    a:hover,
    a:focus {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        text-decoration: none;
        outline: 0 solid transparent;
        font-weight: 600;
        /*font-size: 14px;*/
    }

    ul,
    ol {
        margin: 0;
    }

        ul li,
        ol li {
            list-style: none;
        }

    img {
        height: auto;
        max-width: 100%;
    }

    /* Spacing */
    .mt-15 {
        margin-top: 15px !important;
    }

    .mt-30 {
        margin-top: 30px !important;
    }

    .mt-50 {
        margin-top: 50px !important;
    }

    .mt-70 {
        margin-top: 70px !important;
    }

    .mt-100 {
        margin-top: 100px !important;
    }

    .mb-15 {
        margin-bottom: 15px !important;
    }

    .mb-30 {
        margin-bottom: 30px !important;
    }

    .mb-50 {
        margin-bottom: 50px !important;
    }

    .mb-70 {
        margin-bottom: 70px !important;
    }

    .mb-100 {
        margin-bottom: 100px !important;
    }

    .ml-15 {
        margin-left: 15px !important;
    }

    .ml-30 {
        margin-left: 30px !important;
    }

    .ml-50 {
        margin-left: 50px !important;
    }

    .mr-15 {
        margin-right: 15px !important;
    }

    .mr-30 {
        margin-right: 30px !important;
    }

    .mr-50 {
        margin-right: 50px !important;
    }

    /* Height */
    .height-400 {
        height: 400px !important;
    }

    .height-500 {
        height: 500px !important;
    }

    .height-600 {
        height: 600px !important;
    }

    .height-700 {
        height: 700px !important;
    }

    .height-800 {
        height: 800px !important;
    }

    /* Section Padding */
    .section-padding-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-padding-100-0 {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .section-padding-0-100 {
        padding-top: 0;
        padding-bottom: 100px;
    }

    .section-padding-100-70 {
        padding-top: 100px;
        padding-bottom: 70px;
    }

    /* Preloader */
    #preloader {
        background-color: #f7f7f7;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 5000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        #preloader .spinner {
            width: 40px;
            height: 40px;
            background-color: #3762f0;
            margin: auto;
            -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
            animation: sk-rotateplane 1.2s infinite ease-in-out;
        }

    @-webkit-keyframes sk-rotateplane {
        0% {
            -webkit-transform: perspective(120px);
            transform: perspective(120px);
        }

        50% {
            -webkit-transform: perspective(120px) rotateY(180deg);
            transform: perspective(120px) rotateY(180deg);
        }

        100% {
            -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
            transform: perspective(120px) rotateY(180deg) rotateX(180deg);
        }
    }

    @keyframes sk-rotateplane {
        0% {
            -webkit-transform: perspective(120px);
            transform: perspective(120px);
        }

        50% {
            -webkit-transform: perspective(120px) rotateY(180deg);
            transform: perspective(120px) rotateY(180deg);
        }

        100% {
            -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
            transform: perspective(120px) rotateY(180deg) rotateX(180deg);
        }
    }
    /* Section Heading */
    .section-heading {
        position: relative;
        z-index: 1;
        margin-bottom: 70px;
        text-align: center;
    }

        .section-heading h3 {
            font-size: 30px;
            margin-bottom: 0;
        }

    @media only screen and (max-width: 767px) {
        .section-heading h3 {
            font-size: 24px;
        }
    }

    .section-heading.text-left {
        text-align: left !important;
    }

    .section-heading.white h3 {
        color: #ffffff;
    }

    /* Miscellaneous */
    .bg-animated {
        width: 100%;
        -webkit-animation: bgAnimated 24s linear infinite;
        animation: bgAnimated 24s linear infinite;
        background-attachment: fixed;
    }

    @-webkit-keyframes bgAnimated {
        0% {
            background-position: center center;
        }

        50% {
            background-position: left left;
        }

        100% {
            background-position: center center;
        }
    }

    @keyframes bgAnimated {
        0% {
            background-position: center chenter;
        }

        50% {
            background-position: left left;
        }

        100% {
            background-position: center center;
        }
    }

    .bg-img {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .bg-white {
        background-color: #ffffff !important;
    }

    .bg-dark {
        background-color: #000000 !important;
    }

    .bg-transparent {
        background-color: transparent !important;
    }

    .font-bold {
        font-weight: 700;
    }

    .font-light {
        font-weight: 300;
    }

    .bg-overlay,
    .foo-bg-overlay,
    .bg-overlay-2by5 {
        position: relative;
        z-index: 1;
        background-position: center center;
        background-size: cover;
    }

        .bg-overlay::after,
        .foo-bg-overlay::after,
        .bg-overlay-2by5::after {
            /* background-color: rgba(255, 255, 255, 0.6);*/
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: "";
        }

        .foo-bg-overlay::after {
            background-color: rgba(0, 0, 0, 0.91);
        }

        .bg-overlay-2by5::after {
            /*background: rgba(0,0,0,0.78);
background: -moz-linear-gradient(left, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.78)), color-stop(52%, rgba(0,0,0,0.55)), color-stop(100%, rgba(0,0,0,0)));
background: -webkit-linear-gradient(left, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0) 100%);
background: -o-linear-gradient(left, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0) 100%);
background: -ms-linear-gradient(left, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0) 100%);
background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
  background-attachment: fixed;
  */
        }

    .mfp-image-holder .mfp-close,
    .mfp-iframe-holder .mfp-close {
        color: #ffffff;
        right: 0;
        padding-right: 0;
        width: 30px;
        height: 30px;
        background-color: #3762f0;
        line-height: 30px;
        text-align: center;
        position: absolute;
        top: 0;
        right: -30px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .mfp-image-holder .mfp-close,
        .mfp-iframe-holder .mfp-close {
            right: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .mfp-image-holder .mfp-close,
        .mfp-iframe-holder .mfp-close {
            right: 0;
        }
    }

    input:focus,
    textarea:focus {
        outline: none;
        box-shadow: none;
        border-color: transparent;
    }

    /* ScrollUp */
    #scrollUp {
        border-radius: 0;
        bottom: 60px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
        color: #ffffff;
        font-size: 24px;
        height: 40px;
        line-height: 38px;
        right: 60px;
        text-align: center;
        width: 40px;
        border-radius: 6px;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        padding-top: 6px;
    }

       

    @media only screen and (max-width: 767px) {
        #scrollUp {
            bottom: 30px;
            right: 30px;
        }
    }

    /* Button */
.axon-btn {
    display: inline-block;
    min-width: 160px;
    height: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #ffffff !important;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 30px;
    line-height: 40px;
    text-align: center;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    cursor: pointer;
}

.axon-btn.active, .axon-btn:hover, .axon-btn:focus {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.axon-btn-sm {
    display: inline-block;
    min-width: 130px;
    height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 12px;
    color: #ffffff !important;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 10px;
    text-align: center;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    cursor: pointer;
}

    a.axon-btn-sm {
        padding: 5px 10px !important;
        margin: 5px;
    }

    .axon-btn-sm:disabled {
        color: #999999 !important;
        text-shadow: rgba(255,255,255,0.5) -1px 0, rgba(255,255,255,0.3) 0 -1px, rgba(255,255,255,0.5) 0 1px, rgba(255,255,255,0.3) -1px -2px;
        cursor: inherit;
        background-color: #dfdfdf !important;
    }

    .axon-btn-sm.light {
        background-color: #efefef !important;
        color: #666 !important;
        vertical-align: middle;
        border-color: burlywood;
        padding-top: 5px;
    }

    .axon-btn.active, .axon-btn:hover, .axon-btn:focus {
        color: #ffffff;
    }

    .axon-btn.btn-2 {
        background-color: transparent;
        border: 1px solid #ebebeb;
        color: rgba(0, 0, 0, 0.25);
    }

        .axon-btn.btn-2:hover, .axon-btn.btn-2:focus {
            color: #ffffff;
            background-color: #2c56df;
            border: 1px solid #2c56df;
        }

    /* :: 4.0 Header Area */
    .header-area {
        position: relative;
        z-index: 200;
    }

    .top-header-area {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 40px;
    }

        .top-header-area .contact-info {
            position: relative;
            z-index: 1;
        }

            .top-header-area .contact-info a {
                display: inline-block;
                height: 40px;
                padding: 0 30px;
                line-height: 40px;
                /*color: white;*/
                font-size: 12px;
            }

                .top-header-area .contact-info a span {
                    text-transform: uppercase;
                }

                .top-header-area .contact-info a:hover, .top-header-area .contact-info a:focus {
                    color: #1b1b1b;
                }


        .top-header-area .follow-us {
            position: relative;
            z-index: 1;
        }

            .top-header-area .follow-us span {
                display: inline-block;
                height: 40px;
                padding: 0 20px;
                line-height: 40px;
                /*color: white;*/
                font-size: 12px;
                text-transform: uppercase;
            }

            .top-header-area .follow-us a {
                display: inline-block;
                padding: 0 20px;
                line-height: 40px;
                /*color: white;*/
                font-size: 12px;
            }

                .top-header-area .follow-us a span {
                    text-transform: uppercase;
                }

                .top-header-area .follow-us a:hover, .top-header-area .follow-us a:focus {
                    color: #1b1b1b;
                }

    @media only screen and (max-width: 767px) {
        .top-header-area > .contact-info > a, .top-header-area > .follow-us > a {
            display: none !important;
        }
        .top-header-area > .follow-us > span {
           
        }
    }


    .axon-main-menu {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 80px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

        .axon-main-menu .classy-navbar {
            height: 80px;
        }

        .axon-main-menu .classynav ul li a {
            color: rgba(0, 0, 0, 0.45);
            font-weight: 600;
        }

    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .axon-main-menu .classynav ul li a {
            padding: 0 8px;
        }
    }

    .axon-main-menu .classynav ul li a:hover, .axon-main-menu .classynav ul li a:focus {
        color: rgba(0, 0, 0, 0.8);
    }
    /*
  .axon-main-menu .search-area {
    position: relative;
    z-index: 1; }
    .axon-main-menu .search-area form {
      position: relative;
      z-index: 10;
      width: 230px;
      height: 40px;
      margin: 0 50px; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .axon-main-menu .search-area form {
          width: 170px;
          margin: 0 15px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .axon-main-menu .search-area form {
          margin: 15px auto; } }
      @media only screen and (max-width: 767px) {
        .axon-main-menu .search-area form {
          margin: 15px auto; } }
      .axon-main-menu .search-area form input {
        width: 100%;
        height: 40px;
        border-radius: 6px;
        border: 1px solid #ebebeb;
        padding: 0 15px 0 50px;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.35);
        font-weight: 600;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms; }
        .axon-main-menu .search-area form input:focus {
          border: 1px solid rgba(0, 0, 0, 0.5); }
      .axon-main-menu .search-area form button {
        position: absolute;
        width: 50px;
        height: 40px;
        background-color: transparent;
        top: 0;
        left: 0;
        z-index: 10;
        border: none;
        text-align: center;
        cursor: pointer;
        outline: none; }
*/
    .sticky-wrapper {
        width: 100%;
    }

    .is-sticky .axon-main-menu {
        z-index: 1500 !important;
        background-color: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .register-login-area {
        position: relative;
        z-index: 1;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .register-login-area {
            text-align: center;
        }
    }

    @media only screen and (max-width: 767px) {
        .register-login-area {
            text-align: center;
        }
    }

    .register-login-area a {
        position: relative;
        display: inline-block;
        padding: 0 20px;
        height: 40px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
        color: #3762f0;
        line-height: 40px;
    }

        .register-login-area a.active, .register-login-area a:hover, .register-login-area a:focus {
            background-color: #f2eeee;
            font-weight: 600;
        }

    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .register-login-area a {
            padding: 0 15px;
        }
    }

    .login-state {
        position: relative;
        z-index: 1;
    }

        .login-state .user-name .dropdown .dropdown-toggle {
            font-size: 14px;
            font-weight: 700;
            color: #000;
        }

        .login-state .user-name .dropdown-menu {
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
            border: none;
            padding: 15px 0;
        }

            .login-state .user-name .dropdown-menu .dropdown-item {
                padding: 5px 30px;
                font-size: 13px;
                font-weight: 600;
            }

                .login-state .user-name .dropdown-menu .dropdown-item:hover, .login-state .user-name .dropdown-menu .dropdown-item:focus {
                    color: #3762f0;
                }

        .login-state .userthumb {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 40px;
            flex: 0 0 40px;
            max-width: 40px;
            width: 40px;
            border-radius: 6px;
        }

            .login-state .userthumb img {
                border-radius: 6px;
            }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .login-state {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
    }

    @media only screen and (max-width: 767px) {
        .login-state {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
    }

    /* :: 5.0 Hero Area */
    .hero-area {
        position: relative;
        z-index: 2;
        width: 100%;
        color: white;
        min-height: 280px;
        flex: 1 1 auto;
    }

        .hero-area .hero-content h2 {
            font-size: 38px;
            margin-bottom: 0px;
            margin-top: 50px;
            font-weight: 400;
            font-style: normal;
            font-family: 'Montserrat', sans-serif;
            color: white;
        }

        .hero-area .hero-content h5 {
            font-size: 28px;
            margin-bottom: 30px;
            font-weight: 200;
            font-style: normal;
            font-family: 'Montserrat', sans-serif;
            color: white;
        }

        .hero-area a {
            font-weight: 400;
            font-style: normal;
            color: #aaddf1;
        }

        .hero-area .axon-btn {
            font-weight: 400;
            font-style: normal;
            color: #fff;
        }

    @media only screen and (max-width: 767px) {
        .hero-area .hero-content h2 {
            font-size: 28px;
            margin-bottom: 0px;
            margin-top: 50px;
        }

        .hero-area .hero-content h5 {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .hero-area {
            min-height: 380px;
        }
    }

    @media only screen and (max-width: 576px) {
        .hero-area .axon-btn {
            width: 100%;
        }

        .hero-area {
            min-height: 480px;
        }
    }

    /* :: 6.0 Cool Facts Area */
    /*
.single-cool-facts-area {
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 6px; }
  .single-cool-facts-area img {
    display: block;
    margin: 0 auto 15px; }
  .single-cool-facts-area h2 {
    font-size: 36px;
    margin-bottom: 5px;
    color: #3762f0; }
  .single-cool-facts-area h5 {
    margin-bottom: 0;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8); }

.popular-courses-area {
  position: relative;
  z-index: 1;
  background-repeat: repeat; }
*/
    .course-card {
        position: relative;
        z-index: 1;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        border-radius: 6px;
        background-color: #ffffff;
    }

        .course-card img {
            display: block;
            width: 150px;
            height: 150px;
            border-radius: 6px 6px 0 0;
            float: left;
            margin-right: 15px;
        }

        .course-card .course-content {
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 25px;
            padding-right: 25px;
        }

            .course-card .course-content .page-title {
                margin-top: 0px;
            }

            .course-card .course-content h4 {
                margin-bottom: 5px;
            }

            .course-card .course-content .meta {
                margin-bottom: 15px;
            }

                .course-card .course-content .meta span {
                    color: rgba(0, 0, 0, 0.4);
                    font-size: 5px;
                    margin-right: 10px;
                }

                .course-card .course-content .meta a {
                    color: rgba(0, 0, 0, 0.4);
                    display: inline-block;
                    font-size: 14px;
                    font-weight: 400;
                    margin-right: 10px;
                }

                    .course-card .course-content .meta a:hover {
                        color: #000;
                    }

            .course-card .course-content p {
                margin-bottom: 10px;
                line-height: 1.5em;
            }

        .course-card .seat-rating-fee {
            width: 100%;
            height: 40px;
            background-color: #f7f7f7;
            border-radius: 0 0 6px 6px;
        }

            .course-card .seat-rating-fee .seat-rating {
                font-size: 12px;
                color: rgba(0, 0, 0, 0.3);
                font-weight: 600;
                height: 100%;
            }

                .course-card .seat-rating-fee .seat-rating div {
                    padding: 0 20px;
                    border-right: 1px solid #ebebeb;
                    height: 100%;
                    line-height: 40px;
                    white-space: nowrap;
                }

                .course-card .seat-rating-fee .seat-rating i {
                    font-size: 13px;
                    color: rgba(0, 0, 0, 0.3);
                }

            .course-card .seat-rating-fee .course-fee a {
                display: inline-block;
                /*width: 70px;*/
                height: 40px;
                border-radius: 0 0 6px 0;
                background-color: #e3d21b;
                text-align: center;
                line-height: 40px;
                font-size: 12px;
                font-weight: 700;
                text-transform: uppercase;
                color: #ffffff;
                letter-spacing: 0.75px;
                padding-left: 10px;
                padding-right: 10px;
            }

                .course-card .seat-rating-fee .course-fee a.free {
                    background-color: #3762f0;
                }

                

                .course-card .seat-rating-fee .course-fee a.noaccess {
                    background-color: #ccc;
                }

                .course-card .seat-rating-fee .course-fee a.certificate {
                    background-color: #ffa500;
                }

                .course-card .seat-rating-fee .course-fee a.demo {
                    background-color: #dd00ff;
                }

    @media only screen and (max-width: 767px) {
        .course-card .seat-rating-fee .seat.opt {
            display: none;
        }
    }
    /*
.single-course-intro {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px; }
  .single-course-intro .single-course-intro-content {
    width: 425px;
    height: auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px; }
    @media only screen and (max-width: 767px) {
      .single-course-intro .single-course-intro-content {
        width: 280px; } }
    .single-course-intro .single-course-intro-content .ratings {
      margin-bottom: 20px; }
      .single-course-intro .single-course-intro-content .ratings i {
        color: #e3d21b;
        font-size: 13px;
        padding: 0 3px;
        display: inline-block; }
    .single-course-intro .single-course-intro-content h3 {
      font-size: 30px;
      margin-bottom: 10px; }
      @media only screen and (max-width: 767px) {
        .single-course-intro .single-course-intro-content h3 {
          font-size: 24px; } }
    .single-course-intro .single-course-intro-content .meta {
      margin-bottom: 30px; }
      .single-course-intro .single-course-intro-content .meta span {
        color: rgba(0, 0, 0, 0.4);
        font-size: 5px;
        margin-right: 10px; }
      .single-course-intro .single-course-intro-content .meta a {
        color: rgba(0, 0, 0, 0.4);
        display: inline-block;
        font-size: 14px;
        font-weight: 400;
        margin-right: 10px; }
        .single-course-intro .single-course-intro-content .meta a:hover {
          color: #000; }
    .single-course-intro .single-course-intro-content .price {
      font-size: 12px;
      text-transform: uppercase;
      color: #3762f0;
      letter-spacing: 0.75px;
      font-weight: 700; }

.course--content {
  position: relative;
  z-index: 1; }

.axon-tabs-content {
  position: relative;
  z-index: 1;
  margin-bottom: 30px; }
  .axon-tabs-content .nav-tabs {
    margin-bottom: 20px;
    border-bottom: none; }
    .axon-tabs-content .nav-tabs .nav-item .nav-link {
      display: inline-block;
      height: 40px;
      background-color: transparent;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
      color: rgba(0, 0, 0, 0.25);
      border: 1px solid #ebebeb;
      border-radius: 6px;
      padding: 0 25px;
      line-height: 40px;
      -webkit-transition-duration: 800ms;
      transition-duration: 800ms;
      text-align: center;
      margin-right: 10px;
      margin-bottom: 10px; }
      .axon-tabs-content .nav-tabs .nav-item .nav-link.active, .axon-tabs-content .nav-tabs .nav-item .nav-link:hover, .axon-tabs-content .nav-tabs .nav-item .nav-link:focus {
        font-size: 14px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.5);
        background-color: #ebebeb; }
    .axon-tabs-content .nav-tabs .nav-item:last-child .nav-link {
      margin-right: 0; }
  .axon-tabs-content .tab-content {
    position: relative;
    z-index: 1; }

.axon-description {
  position: relative;
  z-index: 1; }
  .axon-description .about-course {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    .axon-description .about-course h4 {
      margin-bottom: 20px;
      display: block; }
    .axon-description .about-course p {
      font-size: 16px;
      line-height: 1.9; }
      .axon-description .about-course p:last-child {
        margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .axon-description .about-course {
        padding: 30px; } }
  .axon-description .all-instructors {
    padding: 40px 40px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    @media only screen and (max-width: 767px) {
      .axon-description .all-instructors {
        padding: 30px 30px 0; } }
    .axon-description .all-instructors h4 {
      margin-bottom: 25px;
      display: block; }
    .axon-description .all-instructors .single-instructor {
      position: relative;
      z-index: 1;
      background-color: #f7f7f7;
      border-radius: 6px; }
      .axon-description .all-instructors .single-instructor .instructor-thumb {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
        width: 80px;
        max-width: 80px;
        height: 80px; }
      .axon-description .all-instructors .single-instructor .instructor-info {
        padding-left: 25px; }
        .axon-description .all-instructors .single-instructor .instructor-info h5 {
          font-size: 18px;
          margin-bottom: 5px; }
          @media only screen and (max-width: 767px) {
            .axon-description .all-instructors .single-instructor .instructor-info h5 {
              font-size: 14px; } }
        .axon-description .all-instructors .single-instructor .instructor-info span {
          font-weight: 400;
          color: rgba(0, 0, 0, 0.4);
          font-size: 14px; }
  .axon-description .axon-faqs {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    .axon-description .axon-faqs h4 {
      margin-bottom: 25px;
      display: block; }
    @media only screen and (max-width: 767px) {
      .axon-description .axon-faqs {
        padding: 30px; } }

.axon-curriculum {
  position: relative;
  z-index: 1; }
  .axon-curriculum .about-curriculum {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    .axon-curriculum .about-curriculum h4 {
      margin-bottom: 20px;
      display: block; }
    .axon-curriculum .about-curriculum p {
      font-size: 16px;
      line-height: 1.9; }
      .axon-curriculum .about-curriculum p:last-child {
        margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .axon-curriculum .about-curriculum {
        padding: 30px; } }
  .axon-curriculum .curriculum-level {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    .axon-curriculum .curriculum-level h4 {
      margin-bottom: 20px;
      display: block; }
    .axon-curriculum .curriculum-level h5 {
      color: rgba(0, 0, 0, 0.6);
      font-size: 18px; }
    .axon-curriculum .curriculum-level .curriculum-list li {
      display: block;
      margin-bottom: 10px;
      font-family: "Raleway", sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.5); }
      .axon-curriculum .curriculum-level .curriculum-list li:last-child {
        margin-bottom: 0; }
      .axon-curriculum .curriculum-level .curriculum-list li i {
        color: #e3d21b;
        margin-right: 5px;
        display: inline-block; }
      .axon-curriculum .curriculum-level .curriculum-list li ul {
        display: block;
        margin-top: 10px;
        padding-left: 25px; }
        .axon-curriculum .curriculum-level .curriculum-list li ul li {
          margin-bottom: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          padding: 10px 0;
          border-bottom: 1px solid #ebebeb; }
          .axon-curriculum .curriculum-level .curriculum-list li ul li span span {
            text-decoration: underline; }
    @media only screen and (max-width: 767px) {
      .axon-curriculum .curriculum-level {
        padding: 30px; } }

.axon-review {
  position: relative;
  z-index: 1; }
  .axon-review .about-review {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    .axon-review .about-review h4 {
      margin-bottom: 20px;
      display: block; }
    .axon-review .about-review p {
      font-size: 16px;
      line-height: 1.9; }
      .axon-review .about-review p:last-child {
        margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .axon-review .about-review {
        padding: 30px; } }
  .axon-review .axon-ratings {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    @media only screen and (max-width: 767px) {
      .axon-review .axon-ratings {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .axon-review .axon-ratings .total-ratings {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 235px;
      flex: 0 0 235px;
      min-width: 235px;
      width: 235px;
      border-right: 1px solid #ebebeb;
      height: 250px; }
      @media only screen and (max-width: 767px) {
        .axon-review .axon-ratings .total-ratings {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          min-width: 100%;
          width: 100%;
          border-right: none;
          border-bottom: 1px solid #ebebeb; } }
      .axon-review .axon-ratings .total-ratings h2 {
        font-size: 60px;
        margin-bottom: 5px; }
      .axon-review .axon-ratings .total-ratings .ratings-- {
        margin-bottom: 10px; }
        .axon-review .axon-ratings .total-ratings .ratings-- i {
          font-size: 18px;
          display: inline-block;
          padding: 0 5px;
          color: #e3d21b; }
      .axon-review .axon-ratings .total-ratings span {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.3); }
    .axon-review .axon-ratings .rating-viewer {
      padding: 50px 40px 35px; }
      @media only screen and (max-width: 767px) {
        .axon-review .axon-ratings .rating-viewer {
          padding: 40px 30px 25px; } }
      .axon-review .axon-ratings .rating-viewer span {
        color: rgba(0, 0, 0, 0.3);
        font-size: 12px;
        text-transform: uppercase;
        padding-right: 15px; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .axon-review .axon-ratings .rating-viewer span {
            padding-right: 5px;
            font-size: 11px; } }
        @media only screen and (max-width: 767px) {
          .axon-review .axon-ratings .rating-viewer span {
            padding-right: 5px;
            font-size: 11px; } }
      .axon-review .axon-ratings .rating-viewer .progress {
        width: 300px;
        margin-right: 15px;
        height: 10px;
        border-radius: 0;
        background-color: #f1f1f1; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .axon-review .axon-ratings .rating-viewer .progress {
            width: 200px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .axon-review .axon-ratings .rating-viewer .progress {
            width: 140px; } }
        @media only screen and (max-width: 767px) {
          .axon-review .axon-ratings .rating-viewer .progress {
            width: 140px; } }
        .axon-review .axon-ratings .rating-viewer .progress .progress-bar {
          background-color: #b3b3b3; }
  .axon-review .single-review {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    @media only screen and (max-width: 767px) {
      .axon-review .single-review {
        padding: 30px; } }
    .axon-review .single-review p {
      margin-bottom: 0; }
    .axon-review .single-review .review-admin .thumb {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
      flex: 0 0 40px;
      max-width: 40px;
      width: 40px; }
    .axon-review .single-review .review-admin .text {
      padding-left: 15px; }
      .axon-review .single-review .review-admin .text h6 {
        font-size: 14px;
        margin-bottom: 0px; }
      .axon-review .single-review .review-admin .text span {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.4); }
    .axon-review .single-review .ratings i {
      font-size: 14px;
      display: inline-block;
      padding: 0 3px;
      color: #e3d21b; }

.axon-members {
  position: relative;
  z-index: 1; }
  .axon-members .about-members {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    @media only screen and (max-width: 767px) {
      .axon-members .about-members {
        padding: 30px; } }
    .axon-members .about-members h4 {
      margin-bottom: 20px;
      display: block; }
    .axon-members .about-members p {
      font-size: 16px;
      line-height: 1.9; }
      .axon-members .about-members p:last-child {
        margin-bottom: 0; }
  .axon-members .all-instructors {
    padding: 40px 40px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
    @media only screen and (max-width: 767px) {
      .axon-members .all-instructors {
        padding: 30px 30px 0; } }
    .axon-members .all-instructors h4 {
      margin-bottom: 25px;
      display: block; }
    .axon-members .all-instructors .single-instructor {
      position: relative;
      z-index: 1;
      background-color: #f7f7f7;
      border-radius: 6px; }
      .axon-members .all-instructors .single-instructor .instructor-thumb {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
        width: 80px;
        max-width: 80px;
        height: 80px; }
      .axon-members .all-instructors .single-instructor .instructor-info {
        padding-left: 25px; }
        .axon-members .all-instructors .single-instructor .instructor-info h5 {
          font-size: 18px;
          margin-bottom: 5px; }
          @media only screen and (max-width: 767px) {
            .axon-members .all-instructors .single-instructor .instructor-info h5 {
              font-size: 14px; } }
        .axon-members .all-instructors .single-instructor .instructor-info span {
          font-weight: 400;
          color: rgba(0, 0, 0, 0.4);
          font-size: 14px; }

.instructors-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  background-attachment: fixed !important; }
  .instructors-video::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    content: '';
    z-index: -1; }
  .instructors-video h2 {
    font-size: 100px;
    color: #3762f0;
    margin-bottom: 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .instructors-video h2 {
        font-size: 50px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .instructors-video h2 {
        font-size: 42px; } }
    @media only screen and (max-width: 767px) {
      .instructors-video h2 {
        font-size: 24px; } }
  .instructors-video .video-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 6px;
    text-align: center; }
    .instructors-video .video-btn i {
      line-height: 40px;
      font-size: 18px;
      color: #ffffff; }
    .instructors-video .video-btn:hover {
      background-color: #fff; }
      .instructors-video .video-btn:hover i {
        color: #3762f0; }

.single-instructor {
  position: relative;
  z-index: 1;
  background-color: #f7f7f7;
  border-radius: 6px; }
  .single-instructor .instructor-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    max-width: 80px;
    height: 80px; }
  .single-instructor .instructor-info {
    padding-left: 25px; }
    .single-instructor .instructor-info h5 {
      font-size: 18px;
      margin-bottom: 5px; }
      @media only screen and (max-width: 767px) {
        .single-instructor .instructor-info h5 {
          font-size: 14px; } }
    .single-instructor .instructor-info span {
      font-weight: 400;
      color: rgba(0, 0, 0, 0.4);
      font-size: 14px; }

.sidebar-widget {
  position: relative;
  z-index: 1;
  padding: 35px 30px;
  border: 1px solid #ebebeb;
  border-bottom: none; }
  .sidebar-widget:last-child {
    border-bottom: 1px solid #ebebeb; }
  .sidebar-widget h4 {
    margin-bottom: 20px;
    font-size: 24px;
    display: block; }
  .sidebar-widget .features-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px; }
    .sidebar-widget .features-list li h6 {
      color: rgba(0, 0, 0, 0.3); }
      @media only screen and (max-width: 767px) {
        .sidebar-widget .features-list li h6 {
          font-size: 14px; } }
      .sidebar-widget .features-list li h6 i {
        margin-right: 10px; }
  .sidebar-widget .single--courses {
    position: relative;
    z-index: 1;
    margin-bottom: 20px; }
    .sidebar-widget .single--courses:last-child {
      margin-bottom: 0; }
    .sidebar-widget .single--courses .thumb {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
      flex: 0 0 80px;
      width: 80px;
      max-width: 80px;
      height: 50px;
      border-radius: 6px; }
      .sidebar-widget .single--courses .thumb img {
        border-radius: 6px; }
    .sidebar-widget .single--courses .content {
      padding-left: 20px; }
      .sidebar-widget .single--courses .content h5 {
        font-size: 18px;
        margin-bottom: 5px;
        color: rgba(0, 0, 0, 0.35); }
        @media only screen and (max-width: 767px) {
          .sidebar-widget .single--courses .content h5 {
            font-size: 14px; } }
      .sidebar-widget .single--courses .content h6 {
        font-size: 12px;
        color: #e3d21b;
        margin-bottom: 0; }

.single-accordion.panel {
  background-color: #ffffff;
  border: 0 solid transparent;
  border-radius: 4px;
  box-shadow: 0 0 0 transparent;
  margin-bottom: 15px; }
.single-accordion:last-of-type {
  margin-bottom: 0; }
.single-accordion h6 {
  margin-bottom: 0;
  text-transform: uppercase; }
  .single-accordion h6 a {
    border-radius: 6px;
    background-color: #f7f7f7;
    color: rgba(0, 0, 0, 0.8);
    display: block;
    margin: 0;
    padding: 15px 60px 15px 30px;
    position: relative;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600; }
    .single-accordion h6 a span {
      font-size: 10px;
      position: absolute;
      right: 20px;
      text-align: center;
      top: 17px; }
      .single-accordion h6 a span.accor-open {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0); }
    .single-accordion h6 a.collapsed {
      background-color: #f7f7f7;
      color: #5a5a5a; }
      .single-accordion h6 a.collapsed span.accor-close {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0); }
      .single-accordion h6 a.collapsed span.accor-open {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100); }
.single-accordion .accordion-content {
  border-top: 0 solid transparent;
  box-shadow: none;
  background-color: #f7f7f7;
  border-radius: 0 0 6px 6px; }
  .single-accordion .accordion-content p {
    padding: 15px 30px;
    margin-bottom: 0; }

.single-upcoming-events {
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px; }
  .single-upcoming-events .events-thumb {
    display: block;
    width: 100%;
    border-radius: 6px 6px 0 0;
    position: relative;
    z-index: 1; }
    .single-upcoming-events .events-thumb::after {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.31);
      content: '';
      z-index: 2; }
    .single-upcoming-events .events-thumb img {
      width: 100%; }
    .single-upcoming-events .events-thumb .event-title {
      position: absolute;
      top: 50%;
      color: #ffffff;
      width: 100%;
      text-align: center;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-bottom: 0;
      z-index: 10; }
    .single-upcoming-events .events-thumb .event-date {
      position: absolute;
      width: 100%;
      text-align: center;
      top: 7%;
      color: #ffffff;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.75px;
      z-index: 10; }
  .single-upcoming-events .date-fee {
    width: 100%;
    height: 40px;
    background-color: #f7f7f7;
    border-radius: 0 0 6px 6px; }
    .single-upcoming-events .date-fee .date p {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.3);
      font-weight: 600;
      height: 100%;
      line-height: 40px;
      margin-bottom: 0;
      padding: 0 30px; }
    .single-upcoming-events .date-fee .events-fee a {
      display: inline-block;
      width: 70px;
      height: 40px;
      border-radius: 0 0 6px 0;
      background-color: #e3d21b;
      text-align: center;
      line-height: 40px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      color: #ffffff;
      letter-spacing: 0.75px; }
      .single-upcoming-events .date-fee .events-fee a.free {
        background-color: #3762f0; }


.register-now {
  position: relative;
  z-index: 1;
  background-repeat: repeat;
  padding-left: 5%;
  padding-right: 5%; }
  @media only screen and (max-width: 767px) {
    .register-now {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .register-now::after {
    background-color: rgba(214, 223, 251, 0.7);
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1; }
  .register-now .register-contact-form {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    min-width: 45%;
    width: 45%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px; }
    @media only screen and (max-width: 767px) {
      .register-now .register-contact-form {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        padding: 15px; } }
    .register-now .register-contact-form .forms h4 {
      margin-bottom: 40px; }
    .register-now .register-contact-form .forms .form-control {
      width: 100%;
      border-radius: 6px;
      border: 1px solid #ebebeb;
      height: 40px;
      padding: 0 20px;
      color: rgba(0, 0, 0, 0.25);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 20px;
      display: block; }
  .register-now .register-now-countdown {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    min-width: 45%;
    width: 45%; }
    @media only screen and (max-width: 767px) {
      .register-now .register-now-countdown {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%; } }
    .register-now .register-now-countdown h3 {
      font-size: 30px;
      margin-bottom: 15px; }
    .register-now .register-now-countdown p {
      margin-bottom: 0; }
    .register-now .register-now-countdown .register-countdown {
      display: block;
      margin-top: 50px; }
    .register-now .register-now-countdown .events-cd div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
      flex: 0 0 110px;
      min-width: 110px;
      width: 110px;
      padding: 15px 0;
      text-align: center;
      border: 1px solid #ffffff;
      border-radius: 6px;
      margin-right: 12px;
      font-size: 36px;
      font-weight: 700;
      color: #3762f0; }
      .register-now .register-now-countdown .events-cd div span {
        margin-top: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 18px;
        font-weight: 700;
        display: block; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .register-now .register-now-countdown .events-cd div {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 80px;
          flex: 0 0 80px;
          min-width: 80px;
          width: 80px;
          font-size: 24px; }
          .register-now .register-now-countdown .events-cd div span {
            font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .register-now .register-now-countdown .events-cd div {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 60px;
          flex: 0 0 60px;
          min-width: 60px;
          width: 60px;
          font-size: 18px; }
          .register-now .register-now-countdown .events-cd div span {
            font-size: 12px; } }
      @media only screen and (max-width: 767px) {
        .register-now .register-now-countdown .events-cd div {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 60px;
          flex: 0 0 60px;
          min-width: 60px;
          width: 60px;
          font-size: 18px; }
          .register-now .register-now-countdown .events-cd div span {
            font-size: 12px; } }

.single-tutors-slides {
  position: relative;
  z-index: 1; }
  .single-tutors-slides .tutor-thumbnail {
    width: 165px;
    height: 165px;
    background-color: #000;
    border-radius: 6px;
    margin: 0 auto 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); }
    .single-tutors-slides .tutor-thumbnail img {
      border-radius: 6px;
      width: 100%; }
  .single-tutors-slides .tutor-information {
    display: none;
    position: relative;
    z-index: 1;
    padding: 20px 30px;
    background-color: #f7f7f7;
    border-radius: 6px; }
    .single-tutors-slides .tutor-information::after {
      position: absolute;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 15px solid #f7f7f7;
      content: '';
      top: -14px;
      left: 49%; }
    .single-tutors-slides .tutor-information h5 {
      font-size: 18px;
      margin-bottom: 5px; }
    .single-tutors-slides .tutor-information span {
      font-size: 14px;
      color: rgba(0, 0, 0, 0.4);
      margin-bottom: 20px;
      display: block; }
    .single-tutors-slides .tutor-information p {
      margin-bottom: 30px; }
    .single-tutors-slides .tutor-information .social-info a {
      display: inline-block;
      padding: 0 10px; }
      .single-tutors-slides .tutor-information .social-info a:hover, .single-tutors-slides .tutor-information .social-info a:focus {
        color: #2c56df; }

.center .single-tutors-slides .tutor-information {
  display: block; }

.tutors-slide .owl-prev,
.tutors-slide .owl-next {
  position: absolute;
  width: 40px;
  top: 62.5px;
  background-color: transparent;
  height: 40px;
  text-align: center;
  color: #cccccc;
  font-size: 30px;
  line-height: 36px;
  border-radius: 6px;
  left: 0;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
  .tutors-slide .owl-prev:hover,
  .tutors-slide .owl-next:hover {
    background-color: #2c56df;
    color: #ffffff; }
.tutors-slide .owl-next {
  left: auto;
  right: 0; }


.blog-page {
  padding-left: 7%;
  padding-right: 7%; }

.single-blog-area {
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px; }
  .single-blog-area img {
    display: block;
    width: 100%;
    border-radius: 6px 6px 0 0; }
  .single-blog-area .blog-content {
    padding: 25px; }
    .single-blog-area .blog-content .blog-headline {
      display: block; }
      .single-blog-area .blog-content .blog-headline h4 {
        margin-bottom: 5px;
        margin-left: -1px;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms; }
        .single-blog-area .blog-content .blog-headline h4:hover, .single-blog-area .blog-content .blog-headline h4:focus {
          color: #2c56df; }
    .single-blog-area .blog-content .meta {
      margin-bottom: 15px; }
      .single-blog-area .blog-content .meta span {
        color: rgba(0, 0, 0, 0.4);
        font-size: 5px;
        margin-right: 10px; }
      .single-blog-area .blog-content .meta a {
        color: rgba(0, 0, 0, 0.4);
        display: inline-block;
        font-size: 14px;
        font-weight: 400;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .single-blog-area .blog-content .meta a {
            font-size: 12px; } }
        .single-blog-area .blog-content .meta a:hover {
          color: #000; }
    .single-blog-area .blog-content p {
      margin-bottom: 0; }

.blog-catagories {
  position: relative;
  z-index: 1; }
  .blog-catagories .single-catagories {
    position: relative;
    z-index: 2;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    width: 165px;
    max-width: 165px;
    height: 100px;
    text-align: center;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; }
    .blog-catagories .single-catagories::after {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      background-color: rgba(255, 255, 255, 0.9);
      top: 0;
      left: 0;
      content: ''; }
    .blog-catagories .single-catagories h6 {
      font-size: 14px;
      margin-bottom: 0;
      color: #3762f0;
      text-transform: uppercase;
      letter-spacing: 0.75px;
      line-height: 1.9;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 100%;
      text-align: center;
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms; }
      .blog-catagories .single-catagories h6:hover, .blog-catagories .single-catagories h6:focus {
        color: #1b1b1b; }

.blog-details-text {
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
  padding: 45px 40px;
  border-radius: 6px; }
  @media only screen and (max-width: 767px) {
    .blog-details-text {
      padding: 35px 30px; } }
  .blog-details-text p {
    font-size: 16px;
    line-height: 1.9; }
  .blog-details-text h5 {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 1.9; }
  .blog-details-text .post-tags {
    margin-top: 50px;
    position: relative;
    z-index: 1; }
    .blog-details-text .post-tags ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .blog-details-text .post-tags ul li a {
        display: inline-block;
        padding: 0 15px;
        border: 1px solid #ebebeb;
        line-height: 23px;
        height: 25px;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.2);
        background-color: #ffffff;
        border-radius: 6px;
        margin-right: 10px; }
        .blog-details-text .post-tags ul li a:hover, .blog-details-text .post-tags ul li a:focus {
          border: 1px solid #3762f0;
          background-color: #3762f0;
          color: #ffffff; }
        @media only screen and (max-width: 767px) {
          .blog-details-text .post-tags ul li a {
            padding: 0 5px; } }

.related-posts {
  padding-left: 7%;
  padding-right: 7%; }

.post-a-comments {
  position: relative;
  z-index: 1; }
  .post-a-comments h4 {
    text-align: center;
    margin-bottom: 25px;
    display: block;
    font-size: 24px; }
  .post-a-comments form {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
    padding: 35px 50px;
    border-radius: 6px; }
    .post-a-comments form .form-control {
      width: 100%;
      border-radius: 6px;
      border: 1px solid #ebebeb;
      height: 40px;
      padding: 15px 20px;
      color: rgba(0, 0, 0, 0.25);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 20px;
      display: block; }
    .post-a-comments form textarea,
    .post-a-comments form textarea.form-control {
      width: 100%;
      height: 130px; }

.comments-area {
  position: relative;
  z-index: 1; }
  .comments-area h4 {
    text-align: center;
    margin-bottom: 25px;
    display: block;
    font-size: 24px; }
  .comments-area .comments-list {
    border-radius: 6px; }
    .comments-area .comments-list li {
      box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
      padding: 30px;
      margin-bottom: 30px; }
      .comments-area .comments-list li ol li {
        border-top: 1px solid #ebebeb;
        padding-top: 30px;
        box-shadow: none;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0; }
    .comments-area .comments-list .single-comment-wrap p {
      margin-bottom: 0; }
    .comments-area .comments-list .single-comment-wrap .comment-admin .thumb {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
      flex: 0 0 40px;
      max-width: 40px;
      width: 40px; }
      .comments-area .comments-list .single-comment-wrap .comment-admin .thumb img {
        border-radius: 6px; }
    .comments-area .comments-list .single-comment-wrap .comment-admin .text {
      padding-left: 15px; }
      .comments-area .comments-list .single-comment-wrap .comment-admin .text h6 {
        font-size: 14px;
        margin-bottom: 0px; }
      .comments-area .comments-list .single-comment-wrap .comment-admin .text span {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.4); }
    .comments-area .comments-list .single-comment-wrap .reply a {
      display: inline-block;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #3762f0; }


.breadcumb-area {
  position: relative;
  z-index: 1; }
  .breadcumb-area .breadcrumb {
    padding: 11px 2rem;
    margin-bottom: 0;
    background-color: #f7f7f7;
    border-radius: 0;
    height: 40px; }
    @media only screen and (max-width: 767px) {
      .breadcumb-area .breadcrumb {
        height: auto; } }
    .breadcumb-area .breadcrumb .breadcrumb-item {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.3);
      text-transform: uppercase;
      font-weight: 600; }
      .breadcumb-area .breadcrumb .breadcrumb-item a {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.3);
        text-transform: uppercase;
        font-weight: 600; }
        .breadcumb-area .breadcrumb .breadcrumb-item a:hover, .breadcumb-area .breadcrumb .breadcrumb-item a:focus {
          color: #000; }

.axon-catagory {
  width: 100%;
  height: 240px;
  position: relative;
  z-index: 2; }
  .axon-catagory::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(215, 224, 252, 0.9);
    z-index: -1; }
  .axon-catagory h3 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: #3762f0;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .axon-catagory h3 {
        font-size: 24px; } }
  .axon-catagory.blog-details::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1; }
  .axon-catagory.blog-details h3 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 20px;
    display: block; }
    @media only screen and (max-width: 767px) {
      .axon-catagory.blog-details h3 {
        font-size: 24px; } }
  .axon-catagory.blog-details .meta {
    margin-bottom: 15px; }
    .axon-catagory.blog-details .meta span {
      color: #ffffff;
      font-size: 5px;
      margin-right: 10px;
      font-weight: 600; }
    .axon-catagory.blog-details .meta a {
      color: #ffffff;
      display: inline-block;
      font-size: 16px;
      font-weight: 600;
      margin-right: 10px; }
      @media only screen and (max-width: 767px) {
        .axon-catagory.blog-details .meta a {
          font-size: 14px; } }
      .axon-catagory.blog-details .meta a:hover {
        color: #000; }


.contact--info {
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
  padding: 35px 30px;
  border: 1px solid #ebebeb;
  border-radius: 6px; }
  @media only screen and (max-width: 767px) {
    .contact--info {
      padding: 20px; } }
  .contact--info h4 {
    margin-bottom: 20px;
    font-size: 24px;
    display: block; }
  .contact--info .contact-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px; }
    .contact--info .contact-list li h6 {
      color: rgba(0, 0, 0, 0.3); }
      @media only screen and (max-width: 767px) {
        .contact--info .contact-list li h6 {
          font-size: 12px; } }
      .contact--info .contact-list li h6 i {
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .contact--info .contact-list li h6 i {
            margin-right: 5px; } }

.contact-form {
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
  padding: 35px 50px;
  border-radius: 6px;
  margin-top: -70px;
  background-color: #ffffff; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-form {
      margin-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    .contact-form {
      margin-bottom: 50px;
      padding: 30px; } }
  .contact-form h4 {
    margin-bottom: 25px;
    display: block;
    font-size: 24px; }
  .contact-form form {
    position: relative;
    z-index: 1; }
    .contact-form form .form-control {
      width: 100%;
      border-radius: 6px;
      border: 1px solid #ebebeb;
      height: 40px;
      padding: 15px 20px;
      color: rgba(0, 0, 0, 0.25);
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 20px;
      display: block; }
    .contact-form form textarea,
    .contact-form form textarea.form-control {
      width: 100%;
      height: 130px; }

#googleMap {
  width: 100%;
  height: 400px; }
*/

.page-title {
    margin-top: 20px;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
    }
.page-title a {
    font-weight: 400 !important;
}
.page-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 10px;
}
    .page-content {
        position: relative;
        z-index: 1;
        margin-top: 20px;
       margin-bottom:20px;
    }

    @media only screen and (max-width: 767px) {
        .page-content {
        }
    }

    .page-content h4 {
    }

    .page-content p {
        font-size: 16px;
        line-height: 2;
    }

        .page-content p:last-of-type {
            margin-bottom: 0;
        }


    #page-container {
        position: relative;
        min-height: 100vh;
        height: 100%;
    }

    #content-wrap {
        display: flex;
        flex-flow: column;
        min-height: calc(100vh - 2.5rem);
    }

    .footer-area {
        bottom: 0;
        width: 100%;
        height: 2.5rem;
    }

    .top-footer-area {
        position: relative;
        z-index: 1;
         padding: 8px 0;
        text-align: center;
        border-bottom: 1px solid #4c4c4c;
        border-top: 1px solid #acacac;
    }

        .top-footer-area .footer-logo {
            display: block;
            margin-bottom: 15px;
        }

        .top-footer-area p {
            margin-bottom: 0;
            font-size: 12px;
            font-weight: 600;
        }
            .top-footer-area p a {
                font-size: 12px;
            }

                .top-footer-area p a:hover, .top-footer-area p a:focus {
                    color: #777;
                }
    @media only screen and (max-width: 767px) {
        .top-footer-area p {
            margin-bottom: 0;
            font-size: 10px;
            font-weight: 600;
        }

        .footer-area {
            height: 3rem;
        }
        .top-footer-area p a {
            font-size: 10px;
        }

        /*#content-wrap {
            padding-bottom: 3rem;
        }*/
    }



    .bottom-footer-area {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 40px;
        background-color: #1f1f1f;
    }

    @media only screen and (max-width: 767px) {
        .bottom-footer-area {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            height: auto;
        }
    }

    .bottom-footer-area .contact-info {
        position: relative;
        z-index: 1;
    }

        .bottom-footer-area .contact-info a {
            display: inline-block;
            height: 40px;
            padding: 0 30px;
            line-height: 40px;
            color: rgba(255, 255, 255, 0.2);
            font-size: 12px;
            border-right: 1px solid #4c4c4c;
        }

            .bottom-footer-area .contact-info a span {
                text-transform: uppercase;
            }

            .bottom-footer-area .contact-info a:hover, .bottom-footer-area .contact-info a:focus {
                color: #ffffff;
            }

    @media only screen and (max-width: 767px) {
        .bottom-footer-area .contact-info a {
            padding: 0 10px;
            font-size: 11px;
        }

            .bottom-footer-area .contact-info a:last-child {
                border-right: none;
            }
    }

    @media only screen and (max-width: 767px) {
        .bottom-footer-area .contact-info {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
            width: 100%;
            margin-left: auto;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
    }

    .bottom-footer-area .follow-us {
        position: relative;
        z-index: 1;
    }

    @media only screen and (max-width: 767px) {
        .bottom-footer-area .follow-us {
            margin-left: auto;
        }
    }

    .bottom-footer-area .follow-us span {
        display: inline-block;
        height: 40px;
        padding: 0 20px;
        line-height: 40px;
        color: rgba(255, 255, 255, 0.2);
        font-size: 12px;
        text-transform: uppercase;
    }

    .bottom-footer-area .follow-us a {
        display: inline-block;
        height: 40px;
        padding: 0 20px;
        line-height: 40px;
        color: rgba(255, 255, 255, 0.2);
        font-size: 12px;
        border-left: 1px solid #4c4c4c;
    }

        .bottom-footer-area .follow-us a span {
            text-transform: uppercase;
        }

        .bottom-footer-area .follow-us a:hover, .bottom-footer-area .follow-us a:focus {
            color: #ffffff;
        }

    /*# sourceMappingURL=style.css.map */


    /**
* Make the field a flex-container, reverse the order so label is on top.
*/
    .field {
        display: flex;
        flex-flow: column-reverse;
    }
    /**
* Add a transition to the label and input.
*/
    label, input {
        transition: all 0.2s;
    }

    input {
        font-size: 1.5em;
        border: 0;
        border-bottom: 1px solid #ccc;
    }
        /**
* Change input border on focus.
*/
        input:focus {
            outline: 0;
            border-bottom: 1px solid #666;
        }
        /**
* When the label follows an input matching :placeholder-shown...
* 1. Make sure the label is only on one row, at max 2/3rds of the
*     field to make sure it scales properly and doesn't wrap.
* 2. Fix the cursor.
* 3. Translate down and scale the label up to cover the placeholder.
*/
        input:placeholder-shown label {
            /* [1] */
            max-width: 66.66%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            /* |2] */
            cursor: text;
            /* [3 */
            transform-origin: left bottom;
            transform: translate(0, 2.125rem) scale(1.5);
        }
    /**
* By default, the placeholder should be transparent. Also, it should 
* inherit the transition.
*/
    ::-webkit-input-placeholder {
        transition: inherit;
        opacity: 0;
    }
    /**
* Show the placeholder when the input is focused.
*/
    input:focus::-webkit-input-placeholder {
        opacity: 1;
    }
    /**
* 1. When the element is focused, remove the label transform.
*     Also, do this when the placeholder is _not_ shown, i.e. when 
*     there's something in the input at all.
* 2. ...and set the cursor to pointer.
*/
    input:not(:placeholder-shown) + label,
    input:focus + label {
        transform: translate(0, 0) scale(1); /* [1] */
        cursor: pointer; /* [2] */
    }

    .login-box {
        border: 2px solid white;
        margin-top: 100px;
        background-color: rgba(255, 255, 255, 0.85);
        color: #082b2b !important;
        padding-top: 20px;
        padding-bottom: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

        .login-box a {
            font-weight: 600;
        }

        .login-box .login-title {
            color: #082b2b !important;
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 400;
            font-style: normal;
            font-family: 'Montserrat', sans-serif;
        }

    .form-control {
        border: 1px solid #a2cdcd;
    }

    input[type='checkbox'].form-control {
        width: auto !important;
        display: inline;
    }



        .classy-nav-container .fa-envelope-open {
            font-weight: normal !important;
        }

.greeting-box {
    width: 100%;
    height: 300px;
    background-image: url(/media/template/GAMMA/student/img/greetings-banner.png);
    background-size: cover;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 100px;
    font-weight: bolder;
    text-shadow: 0px 0px 6px #000000;
}

        .greeting-box .title {
            font-size: 2em;
        }

        .greeting-box .subtitle {
            font-size: 1.2em;
        }

.nav-icon .fa {
    font-size: 1.5em;
    color: rgba(0, 0, 0, 0.45);
}
.nav-icon .fas {
    font-size: 1.5em;
    color: rgba(0, 0, 0, 0.45);
}

    .nav-icon .count {
        z-index: 1;
        position: relative;
        top: -10px;
        right: 8px;
        margin-right: -25px;
    }

    .nav-icon {
        text-align: center;
        padding-right: 10px;
    }
.user-results-icon
{
    padding:0px;
}
.user-results-icon a {
    padding: 5px;
}
   


.nav-courses ul {
    width: 300px !important;
    margin-top: 0px;
    margin-bottom: 0px;
}

.nav-courses ul li {
    height: 70px;
    padding: 5px;
    border-top: 1px solid #ccc;
}

.nav-courses ul li a {
    font-weight: 600 !important;
    font-size: 0.9em !important;
}

.nav-courses ul li a:hover {
    font-size: 0.9em;
}

.nav-courses ul li img {
    width: 40px;
    height: 40px;
    float: left;
    margin: 10px;
}

.nav-courses .progress {
    margin-top: 10px;
}

    .truncate-2lines {
        line-height: 0.9em !important;
        position: relative;
        max-height: 1.8em !important;
        overflow: hidden;
        padding-right: 1rem;
        display: block !important;
        padding-left: 0px !important;
    }

    /*SIDEBAR*/

    .course-sidebar {
        background-color: #f9f9f9;
        bottom: 0px;
        left: 0px;
        position: fixed;
        top: 80px;
        z-index: 3;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        padding-bottom: 40px;
        border: 1px solid #e1e6ef;
    }

        .course-sidebar.opennav {
            width: 300px;
        }

        .course-sidebar.closednav {
            width: 0px;
        }

    @media only screen and (max-width: 767px) {
        .course-sidebar {
            width: 0 !important;
        }

        .course-main {
            margin-left: 0 !important;
        }

        #course-sidebar-close {
            display: none !important;
        }

        .course-content-header-title {
            width: 0 !important;
            padding: 0px !important;
        }
    }
    /* Position and style the close button (top right corner) */
    .course-sidebar .closebtn {
        position: fixed;
        top: 70px;
        left: 250px;
        font-size: 36px;
        margin-left: 50px;
        color: #ccc;
    }

        .course-sidebar .closebtn:hover {
            color: #000;
        }

    .course-main {
        transition: margin-left .5s; /* If you want a transition effect */
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 30px;
        padding-bottom: 20px;
        z-index: 1;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
@media only screen and (max-width: 767px) {

    .course-main {
        padding-left: 30px;
        padding-right: 30px;
    }
}

        .course-main.opennav {
            margin-left: 300px;
        }

        .course-main.closednav {
            margin-left: 0px !important;
        }



    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */

    /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
    @media screen and (max-height: 450px) {
    .course-sidebar {
        padding-top: 15px;
    }
        /*
        .course-sidebar a {
            font-size: 18px;
        }
        */
        
}
@media screen and (max-height: 550px) {
    .login-box {
        margin-top: 20px;
    }
}
    .course-sidebar-toggle {
        position: fixed;
        left: -190px;
        top: 100px;
        z-index: 2;
        vertical-align: middle;
        white-space: nowrap;
        width: 230px;
        padding: 5px;
    }

        .course-sidebar-toggle div {
            width: 180px;
            white-space: nowrap;
            overflow: hidden;
            display: inline-flex;
            margin-right: 5px;
            margin-left: 5px;
            text-align: center;
            margin-top: 5px;
            display: inline;
        }

        .course-sidebar-toggle a {
            font-size: 1.1em;
            display: flex;
            color: white;
        }

            .course-sidebar-toggle a i {
                font-size: 2.2em;
            }

        .course-sidebar-toggle:hover {
            left: 0px;
            transition: margin-left 1s;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
        }

    .course-content-header {
        width: 100%;
    }

        .course-content-header .course-content-header-title {
            background-color: #f2f2f2;
            border-bottom: 1px solid #e5e5e5;
            position: fixed;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            white-space: nowrap;
            font-weight: 600;
            display: block;
            text-align: center;
            font-size: 0.91em;
            overflow: hidden;
        }

            .course-content-header .course-content-header-title.opennav {
                width: 300px;
                padding: 10px;
            }

            .course-content-header .course-content-header-title.closednav {
                width: 0px !important;
                padding: 0px !important;
            }

    .course-sidebar #divUnitsTree {
        padding-top: 40px;
    }

.course-sidebar .folder {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--primary-hover-color);
    padding: 10px;
    font-size: 0.81em;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--header-text);
}

    .course-sidebar .folder.focused {
        background-color: var(--primary-hover-color);
    }

        .course-sidebar .folder.enabled {
            cursor: pointer;
        }

        .course-sidebar .folder.disabled {
            cursor: not-allowed;
        }
.course-sidebar .folder.pending {
    background-color: var(--disabled-light-color);
    color: var(--primary-hover-color);
}
.course-sidebar .folder.passed i {
    font-size: 16px;
    color: var(--sidebar-icons-color);
    margin: 3px;
}

    .course-sidebar .folder.current i {
        font-size: 16px;
        color: var(--sidebar-icons-color);
        margin: 3px;
    }

    .course-sidebar .folder.pending i  {
        font-size: 16px;
        color: var(--primary-hover-color);
        margin: 3px;
    }

        .course-sidebar .folder a {
            font-weight: bolder;
        }

    .course-sidebar .folder .badge {
        font-size: 1em;
        background-color: #ffffff2b;
        color: var(--sidebar-icons-color);
    }
    .course-sidebar .folder.pending .badge {
        color: var(--primary-hover-color) !important;
        background-color: #f9f9f9;
    }
    .course-sidebar .folder .fa-lock, .course-sidebar .file .fa-lock {
        float: right;
        color: var(--disabled-color) !important;
        font-size: 12px !important;
    }

    .course-sidebar .file .fa-exclamation-triangle {
        color: #ffc800 !important;
        font-size: 12px !important;
    }

.course-sidebar .file.passed i {
    color: var(--primary-color);
    font-size: 14px;
    margin: 4px;
}

    .course-sidebar .file.current {
        background-color: #e6fcf4;
    }

        .course-sidebar .file.current i {
            color: #44917b;
            font-size: 14px;
            margin: 4px;
            font-weight: bolder;
        }

    .course-sidebar .file.pending i {
        color: #ccc;
        font-size: 14px;
        margin: 4px;
    }

    .course-sidebar .file {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
        padding: 10px;
        background-color: #fefefe;
        font-size: 0.81em;
        padding-left: 20px;
    }
        /*.course-sidebar .file a.disabled {
                color: #888;
                font-weight: normal !important;
            }*/
        .course-sidebar .file a {
            color: #44917b;
            font-weight: normal !important;
        }

            .course-sidebar .file a.hover {
                color: #44917b;
                font-weight: 600 !important;
            }

        .course-sidebar .file.current a {
            color: #44917b;
            font-weight: 600 !important;
        }

    .course-sidebar a.hook {
        margin-top: -100px;
        position: absolute;
    }

    .course-nav-line {
        color: white;
        height: 40px;
        position: fixed;
        top: 40px;
        width: 100%;
        z-index: 5;
        padding-top: 10px;
        padding-left: 30px;
        font-weight: 600;
        font-size: 1em;
    }

        .course-nav-line .course-title {
            white-space: nowrap;
            overflow: hidden;
            display: block;
            margin-right: 130px;
        }

    .course-controls {
        margin-right: 30px;
        position: fixed;
        right: 0px;
        top: 50px;
    }

        .course-controls i {
            font-size: 30px;
            margin-top: -4px;
            color: white;
            padding-right: 15px;
        }

            .course-controls i.fa-exclamation-circle {
                color: yellow !important;
            }

            .course-controls i.fa-running {
                color: #ffec07 !important;
            }

    @media only screen and (max-width: 767px) {
        .course-nav-line {
            padding-left: 10px;
        }

        .course-controls {
            margin-right: 10px;
        }
    }

    .course-mode .top-footer-area {
        background-color: transparent !important;
        border-top: 0px solid white !important;
    }

        .course-mode .top-footer-area .footer-copy {
            border-top: 1px solid #ccc;
            padding-top: 5px;
        }

    .course-mode .top-header-area {
        display: none !important;
    }

    .course-mode .axon-main-menu {
        height: 40px !important;
    }

        .course-mode .axon-main-menu .classy-navbar {
            height: 40px !important;
        }

    .course-mode .classy-navbar .nav-brand img {
        height: 30px !important;
    }



    .course-mode .page-title {
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .pnlOption .form-control, .pnlOption .form-control-sm {
        padding: .1rem .3rem !important;
        font-size: 100% !important;
        margin-bottom: 5px;
    }

    .cssQuestion audio {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        height: 40px;
    }

    .tip {
        border-bottom: 0px solid transparent !important;
        display: inline-block;
    }

    .pnlOption input {
        font-size: 1em !important;
    }

    .pnlOption label {
        display: inline-flex;
        margin-left: 2px;
    }

    .pnlOption .rdOption input, .pnlOption .rdOption label {
        display: inline;
    }

    .course-mode .qitem-title, .qitem-title {
        margin-bottom: 10px;
        display: block;
        margin-top: 10px;
        font-size: 1rem;
        line-height: 1.3;
        font-weight: 600;
    }

    .inbox .table-warning, .inbox .table-warning td {
        background-color: #fffbca !important;
    }

    .inbox thead tr {
        background-color: #f7f7f7 !important;
    }

    .inbox a {
        font-weight: normal !important;
    }

    .inbox tbody .fa-envelope {
        color: #f68903;
    }

    .inbox tbody tr td:first-child, .inbox thead tr th:first-child {
        vertical-align: middle;
    }



    .carousel-control-next,
    .carousel-control-prev {
        filter: invert(100%);
        z-index: 100;
        bottom: auto !important;
        margin-top: 80px;
    }

    .carousel-control-prev {
        margin-left: -100px;
    }

    .carousel-control-next {
        margin-right: -100px;
    }

    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 40px;
        height: 80px;
    }
    @media only screen and (max-width: 767px) {
        .carousel-control-next {
            margin-right: 0px;
            margin-top:-10px;
        }
        .carousel-control-prev {
            margin-left: 0px;
            margin-top: -10px;
        }
        #sectionSlider {
            margin-left: -40px;
            margin-right: -40px;
        }
        .slide-title {
            padding-left: 40px;
            padding-right: 40px;
            min-height:30px;
        }
        
        

    }
    .carousel-indicators {
        bottom: -30px;
    }

        .carousel-indicators li {
            background-color: #ddd;
            padding-top: 10px;
            cursor: pointer;
        }



    .slide-title {
        text-align: center;
        color: rgb(0, 128, 128);
        font-weight: bolder;
    }

    #sectionSlider {
        padding: 10px;
        border: 1px solid #eee;
        margin-bottom: 40px;
    }

    .videoContainer {
        text-align: center;
    }

        .videoContainer video {
            width: 640px;
        }

    @media only screen and (max-width: 767px) {
        .videoContainer video {
            width: 100%;
        }
    }

    .sentPreview {
        width: 596px;
        border: 2px solid #FFCC99;
        background-color: #FFFFCC;
        padding: 10px;
    }

    :required {
        background: url(../images/asterisk-small.png) no-repeat;
        background-position: right top;
    }

    .questionnaire-title {
        margin-bottom: 10px;
        font-weight: bolder;
    }

    .questionnaire-desc {
        margin-bottom: 20px;
    }

    .questionnaire-result {
        margin-top: 20px;
    }

    .testWordNotClicked, testWordClicked {
        cursor: pointer;
    }

    .nav-courses .dropdown {
        max-height: calc(100vh - 3rem);
        background-color: #fff;
        overflow: hidden;
    }

    .dashboard-enroll {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .test-status-pannel {
        margin-left: -60px;
        margin-right: -60px;
        background-color: rgba(255, 188, 0, 0.1411764705882353);
        margin-top: 10px;
        padding-top: 10px;
        padding-left: 30px;
        padding-right: 10px;
        padding-bottom: 10px;
    }

        .test-status-pannel .fa-info-circle {
            color: #a6c1f3;
            font-size: 1em;
            float: left;
            margin: 5px;
            font-weight: bolder;
        }

        .test-status-pannel .fa-clock {
            color: #fc1111;
            font-size: 1em;
            float: left;
            margin: 5px;
            font-weight: bolder;
        }

    .finish-message {
        margin-bottom: 20px;
        margin-top: 30px;
    }

        .finish-message .header_mid {
            font-weight: bolder;
        }

    .classy-menu.menu-on .axon-btn {
        margin-top: 10px;
    }

    .course-mode .footer-copy, .course-mode .footer-copy a {
        color: #777;
    }

    .cert-body {
        text-align: center;
        background-color: #ffe489;
    }

    a, a:hover, a:focus {
        color: var(--primary-link-color);
    }

    .top-header-area {
        background-color: var(--header-color);
        border-bottom: 1px solid var(--light-border-color);
    }

        .top-header-area a {
            color: var(--header-text);
        }

    .course-card {
        border: 1px solid var(--primary-color);
    }

        .course-card .seat-rating-fee .course-fee a.open {
            background-color: var(--course-fee-color);
        }

    .classy-nav-container {
        border-bottom: 1px solid var(--primary-color);
    }

    .user-results-icon .fas {
        color: var(--primary-color);
    }

    .course-sidebar-toggle {
        background-color: var(--primary-color);
    }

    .course-content-header .course-content-header-title {
        color: var(--primary-color);
    }

    .course-nav-line {
        background-color: var(--primary-color);
    }

    .inbox-navigation .fa-chevron-right, .inbox-navigation .fa-chevron-left {
        color: var(--primary-color);
    }

    .carousel-indicators .active {
        background-color: var(--primary-color) !important;
    }

    #scrollUp {
        background-color: var(--primary-color);
    }

        #scrollUp:hover {
            background-color: var(--primary-hover-color);
        }

    .axon-btn {
        background-color: var(--primary-color);
    }

    .axon-btn-sm {
        background-color: var(--primary-color);
    }

    .axon-btn.active, .axon-btn:hover, .axon-btn:focus {
        background-color: var(--primary-hover-color) !important;
    }

    .axon-btn.active, .axon-btn:hover, .axon-btn:focus {
        background-color: var(--primary-hover-color) !important;
    }

    .register-login-area a.active, .register-login-area a:hover, .register-login-area a:focus {
        color: var(--primary-hover-color);
    }

    .page-title, .page-subtitle {
        color: var(--primary-header-color);
    }

    .login-box a {
        color: var(--primary-link-color);
    }

    .nav-courses ul li a {
        color: var(--primary-link-color) !important;
    }

    .course-mode .qitem-title {
        color: var(--primary-link-color);
    }

    .top-footer-area {
        background-color: var(--footer-background-color);
    }

        .top-footer-area p, .top-footer-area a {
            color: var(--footer-color);
        }

    .greeting-box {
        background-image: var(--img-path-greetings);
    }

    #preloader .spinner {
        background-color: var(--primary-color) !important;
    }

    .axon-icon-add {
        float: right;
        font-size: 36px !important;
        color: var(--primary-color);
    }

    table.dataTable .fas {
        font-size: 20px;
        padding: 5px;
        color: var(--primary-color);
    }



    .filters-panel {
        font-size: 10px !important;
        line-height: 36px;
    }

        .filters-panel select {
            font-size: 10px !important;
        }

 #sectionSlider>.carousel-inner>.carousel-item ul>li
 {
    padding: 5px !important;
    list-style: initial;
    list-style-type: initial;
    margin-left: 30px !important;
    display: list-item;
}
.finish-message img
{
	width:500px;
}