/****************************
#General Style
*****************************/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    position: relative;
    direction: ltr;
    text-align: left;
    color: #53565A;
    background: #fff;
}
::selection {
    background: #000000;
    color: #fff;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    margin-top: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #eee;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}
.btn.focus, .btn:focus, .btn:hover, button:focus, button:hover {
    text-decoration: none;
    outline: none !important;
    box-shadow: none;
    color: #fff;
}
.btn {
    padding: 8px 25px;
    border-radius: 25px;
    -webkit-transition: all ease 0.7s;
    -moz-transition: all ease 0.7s;
    -o-transition: all ease 0.7s;
    transition: all ease 0.7s;
    position: relative;
    overflow: hidden;
    line-height: 22px;
    font-size: 14px;
    text-transform: capitalize;
}
.theme-btn {
    color: #fff;
    background: #9e1f62;
}
.theme-btn:hover {
    color: #fff;
    background: #EA5709;
}
.btn main-custom-btn {
    background: #000000;
    color: #fff;
}
.btn main-custom-btn:hover{
    background: #470760;
    color: #fff;
}
form .btn {
    min-width: 115px;
    padding: 10px 25px;
}
.cancel-btn {
    background: #fff;
    color: #888;
    margin-left: 10px;
}
.btn.focus, .btn:focus, button {
    outline: none !important;
    box-shadow: none;
    border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3em;
    margin-top: 0;
    color: #050845;
    font-weight: 400;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 14px;
}
a {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
    color: #493392;
}
p {
    color: #000000;
    margin-bottom: 0;
}
ul{
    margin: 0;
}
ul, ol, li {
    list-style: none;
}
li{
    list-style: none;
}
input[type="text"], input[type="email"], textarea, input[type="password"], input[type="tel"]
input[type="search"], .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 6px 20px;
    color: #9B9B9B;
    width: 100%;
    height: 48px;
    background: #fff;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 25px;
    margin-bottom: 25px;
    font-size: 13px;
    border: 1px solid #dedede;
}
textarea {
    min-height: 100px;
    border-radius: 15px;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, input[type="password"]:focus, .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #493392;
}


.select2-container {
    display: block;
    width: 100% !important;
}
.select2-selection {
    color: #9B9B9B !important;
    width: 100% !important;
    height: 48px !important;
    font-size: 13px;
    border-radius: 25px !important;
    border: 1px solid #dedede !important;
    background: transparent !important;
    color: #a2a2a2;
    margin-bottom: 25px;
}
.select-location .select2-selection{
    padding-left: 32px;
}
.select-location .select2-selection:before{
    font-family: 'themify';
    content: "\e693";
    position: absolute;
    color: #c1956c;
    left: 15px;
    top: 13px;
    font-size: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #a2a2a2 !important;
    line-height: 48px;
    padding-left: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: 0px;
    top: 20px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dedede;
}
.select2-container--default .select2-selection--single:hover, .select2-container--default .select2-selection--single:focus{
    outline: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #000000;
    color: #fff;
}
.select2-dropdown{
    border: 2px solid #f1f1f1;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
:-moz-placeholder {
    /* Firefox 18- */

    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
::-moz-placeholder {
    /* Firefox 19+ */

    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}

.button:hover, input[type="submit"]:hover, .button:focus, input[type="submit"]:focus, input, button {
    outline: none;
    background: transparent;
}
button:disabled, button[disabled], button:disabled:hover, button[disabled]:hover {
    background-color: #eee;
    color: #c5c5c5 !important;
    cursor: no-drop;
}
select::-ms-expand {
    display: none;
}
.text-muted {
    color: #c5c5c5!important
}
.input-with-icon{
    position: relative;
    width: 100%;
}
.input-with-icon input{
    padding-left: 45px;
}
.input-with-icon i {
    position: absolute;
    color: #c1956c;
    left: 20px;
    top: 13px;
    font-size: 16px;
}
@media (min-width: 1025px) {
    .hidden-mobile {
        display: none!important;
    }
}
.mt-20{
    margin-top: 20px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-10{
    margin-bottom: 10px;
}
.mt-10{
    margin-top: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
.mt-40{
    margin-top: 40px;
}
.mb-40{
    margin-bottom: 40px;
}
.mt-50{
    margin-top: 50px;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-0{
    margin-bottom: 0;
}
.pt-40{
    padding-top: 40px;
}
.pt-30{
    padding-top: 30px;
}
.pt-20{
    padding-top: 20px;
}
.pt-15{
    padding-top: 15px;
}
.ptb-15{
    padding-top: 15px;
    padding-bottom: 15px;
}
.pb-40{
    padding-bottom: 40px;
}
.pb-60{
    padding-bottom: 60px !important;
}
.pb-20{
    padding-bottom: 20px;
}
.pr0{
    padding-right: 0;
}
mr-10{margin-right: 10px;}
.w50{
    width: 50%;
}
.w200{
    min-width: 200px;
}
.h-45{height: 45px;}
.opacity-0{opacity: 0;}
.flex-1{
    flex: 1;
}
/*******************************
#Pagination
********************************/
.pagination-counter {
    padding: 9px 0;
}
.pagination {
    width: 100%;
    margin: 0;
}
.pagination li {
    list-style: none;
    display: inline-block;
    margin: 0 4px 4px 0px;
}
.pagination .page-item a {
    background-color: #f1f1f1 !important;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    color: #666;
    text-align: center;
    margin-right: 10px;
}
.page-item:last-child .page-link, .page-item:first-child .page-link {
    border-radius: 50%;
}
.pagination li.active a, .pagination li a:hover, .page-item.active .page-link {
    background-color: #180B45 !important;
    border-color: #180B45 !important;
    color: #FEFF00;
}
.pagination .page-item.disabled a{
    background-color: #f1f1f1 !important;
    color: #999 !important; cursor: no-drop;
}
.page-link:focus {
    box-shadow: 0 0 0 0.2rem rgb(24 11 69 / 22%);
}
/*===============Navbar Part CSS Start===============*/
.header-inner {
    position: relative;
}
.header-inner.active-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    border-bottom: rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}
.header-inner .my-logo img {
    max-height: 55px;
    margin: 12px 0;
}

.header-inner .my-logo .flaticon-chakra:before {
    margin-right: 0;
    font-size: 40px;
    color: #7b6cd5;
    margin-left: 8px;
    position: relative;
    top: 8px;
}

.header-inner .menu-toggle {
    background: #7b6cd5;
    border-radius: 3px;
    float: left;
    padding: 8px;
    margin: 20px 0;
    border: none;
    outline: none;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.header-inner .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
}

.header-inner .menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.header-inner.menu-active .menu-toggle .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.header-inner.menu-active .menu-toggle .bar:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.header-inner.menu-active .menu-toggle .bar:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.header-inner .main-menu {
    position: relative;
    z-index: 9;
}
.header-search form {
    background: #f7f9f8;
    width: 500px;
    height: 50px;
    border-radius: 30px;
    padding: 10px 25px;
}
.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    margin-bottom: 0;
    height: 100%;
    color: #CFCFCF;
}
.header-search input:focus{
    border: none;
    outline: none;
}
.header-search button {
    background: transparent;
    color: #CFCFCF;
}
.header-search button:hover{
    color: inherit;
}
.user-header{

}
.user-header > ul > li{
    display: inline-block;
    margin-left: 15px;
}
.user-header > ul > li a.dropdown-toggle::after {
    display: none;
}
.user-header > ul > li > a{
    color: #000000;
    font-size: 15px;
}
.select-language .btn-light:hover, .select-language .btn-light{
    background-color: transparent;
    border: none;
}
.dropdown.bootstrap-select.select-language {
    width: 90px !important;
}
.select-language .btn-light {
    font-size: 13px;
    padding: 0;
}
.select-language .dropdown-toggle::after {
    display: none;
    border: none !important;
}
.filter-option-inner{
    position: relative;
}
.filter-option-inner-inner{
    position: relative;
}
.filter-option-inner-inner::after {
    display: inline-block;
    font-family: 'themify';
    font-weight: 900;
    font-size: 8px;
    content: "\e64b";
    margin-left: 10px;
}
.bootstrap-select .dropdown-toggle:focus,.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle{
    border: none;
    outline: none !important;
    background: transparent;
    box-shadow: none;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    display: flex;
    align-items: center;
}
.bootstrap-select .dropdown-menu li a {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
}
.dropdown-menu.show {
    padding: 0px 0;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #6c0f90;
}
.user-dropdown{
    background: #F9F9F9;
    border: none;
    margin-top: 10px;
}
.user-dropdown .head {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    display: flex;
}
.user-dropdown .head .img-block {
    width: 35px;
    height: 35px;
    background: #000000;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
}
.user-dropdown .dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px;
}
.user-dropdown .dropdown-item:hover{
    background: #000000;
    color: #fff;
}
.user-dropdown .dropdown-item:last-child {
    border-top: 1px solid #eee;
}
.user-nme {
    font-size: 14px;
}
.user-nme .text-muted {
    display: block;
    font-size: 12px;
}
.flag {
    width: 17px;
    margin-right: 5px;
}
.header-inner .navbar .nav li{
    position: relative;
}
.header-inner .navbar .nav li a {
    display: block;
    color: #fff;
    padding: 7px 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 13px 3px;
    border-radius: 2px;
}
.header-inner .navbar .nav li.active a, .header-inner .navbar .nav li:hover a {
    background: #9e1f62;
    border-radius: 25px;
}
.header-inner .navbar .nav li a i {
    margin-left: 5px;
    font-size: 9px;
}
.header-inner .navbar .nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    padding: 0;
    background: #f7f9f8;
    list-style: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0;
}
.header-inner .navbar .nav li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
.header-inner .navbar .nav li:hover > .dropdown li > .dropdown {
    left: 100%;
    top: 0;
}
.header-inner .navbar .nav li .dropdown li a {
    background: transparent;
    color: #000000;
    padding: 12px 15px;
    border-bottom: 1px solid #dedede;
    font-size: 13px;
    text-transform: capitalize;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-inner .navbar .nav li .dropdown li a:hover {
    background: #000000;
    color: #fff;
}
nav.navbar{
    background: #000000;
    padding: 0;
}
.navbar-nav {
    flex-direction: row;
    justify-content: center;
}
.home-banner {
     background: linear-gradient( rgb(0 0 0 / 55%), rgba(0, 0, 0, 0.5) ), url(../images/home-banner.jpg);
    position: relative;

    height: 840px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    overflow: hidden;
    background-image: rgb(148 18 18 / 13%);
    display: flex;
    align-items: center;
}
/*.home-banner .shape {
    background-image: url("../images/shape.svg");
    bottom: 0;
    height: 100px;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-size: cover;
    width: 4000px;
}*/
/*.home-banner:before {
    position: absolute;
    content: '';
    background: rgb(102 4 139 / 67%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}*/
.banner-content {
    position: relative;
}
.banner-content h1 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 30px;
}
.subscribe {
    background: url("../images/subscribe.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    padding: 90px 0;
}
.subscribe h2 {
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 34px;
}
.subscribe .btn {
    padding: 12px 40px;
}
footer {
    padding: 60px 0;
    background: #000000;
}
.payment-icons {
    margin-bottom: 20px;
}
.social-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgb(255 255 255 / 17%);
    color: #fff;
    margin-right: 10px;
    display: inline-block;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.social-icon i{
    font-size: 12px;
}
.social-icon:hover{
    background: #9e1f62;
    color: #fff;
}
.footer-logo {
    width: 80%;
    margin: auto;
}
.footer-copyright{
    background: #470760;
    padding: 15px 0;
}
.footer-copyright p, .footer-copyright p a {
    color: #fff;
    font-size: 13px;
}
footer .links a {
    color: #fff;
    margin-bottom: 10px;
    display: block;
}
footer .links a:hover{
    padding-left: 5px;
    color: #9e1f62;
}
.section{
    padding: 30px 0;
}
.home-about {
    padding-right: 80px;
}
.section-title {
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}
.home-about p {
    color: #C2C2C2;
    line-height: 26px;
}
.aboutHome-section {
    padding-bottom: 74px;
    /* margin-bottom: 60px; */
}
.aboutHome-section .shape {
    background-image: url("../images/shape.svg");
    bottom: 0;
    height: 60px;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-size: cover;
}
.service-block {
    padding: 0 20px;
}
.service-block img {
    height: 150px;
    margin-bottom: 30px;
}
.service-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: #000000;
}
.service-block p {
    color: #C2C2C2;
}
.section-title2{
    color: #000000;
    font-weight: 500;
    margin-bottom: 50px;
}
.section-title3 {
    color: #000000;
    position: relative;
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 30px;
}
.section-title3:after {
    position: absolute;
    content: "";
    background: #000000;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 7%;
}
.feature-block{
    margin-bottom: 50px;
}
.img-box img{
    width: 100%;
}
.feature-block p {
    color: #C2C2C2;
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 35px;
}
.page-head {
    position: relative;
    background: url(../images/bottle-2812214__480.jpeg) center center no-repeat;
    background-size: cover;
    height: 200px;
}
.page-head  h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 28px;
}

.star-rating {
    display: inline-block;
    font-size: 17px;
}
.star-rating .star {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-right: 4px;
    position: relative;
}
.star-rating .star.half:after, .star-rating .star:before {
    font-family: "FontAwesome";
    content: "\f005";
    font-weight: 900;
    display: block;
    font-size: 12px;
}
.star-rating .star.half:after {
    color: #ff8f2b;
    position: absolute;
    top: 0;
    width: 50%;
    display: block;
    height: 100%;
    overflow: hidden;
}
.star-rating .star.half:after, .star-rating .star:before, .star-rating .star.half:after{
    color: #f8cc47;
}
.star-rating .star.half:before, .star-rating .star.empty:before {
    color: #ddd;
}
.inner-title {
    font-size: 22px;
    margin-bottom: 25px;
}
.courses-block{
    margin-bottom: 30px;
}
.course-block{
    background: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 25px;
}
.course-block:hover{
    transform: translateY(-6px);
    box-shadow: 0 7px 13px 0 rgb(137 140 148 / 10%);
}
.img-block {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 9px;

}
.img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.course-block .img-block:after {
    content: "";
    position: absolute;
    border-radius: 4px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
}
.course-content h3{
    line-height: 20px;
}
.course-content .title {
    color: inherit;
    font-size: 17px;
}
.course-content .title:hover, .course-block:hover .title {
    color: #9e1f62;
}
.tutor-name {
    color: #C2C2C2;
    font-size: 13px;
}
.course-users{
    font-size: 12px;
    color: #C2C2C2;
}
.course-users i{
    font-size: 13px;
    color: #000000;
    margin-right: 2px;
}
.price {
    color: #9e1f62;
    font-weight: 500;
}
.add-cart {
    padding: 4px 15px;
    font-size: 12px;
}
.course-content {
    padding: 15px 10px;
}
.has-child .children {
    display: none;
    margin-top: 10px;
    padding-left: 10px;
}
.has-child .arrow-cate {
    float: right;
    margin-right: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}
.has-child .arrow-cate:after {
    display: inline-block;
    font-family: 'themify';
    content: "\e61a";
    color: #adadad;
    font-size: 9px;
    position: absolute;
}
.has-child.show-sub .arrow-cate:after {
    content: "\e622";
}
.colles-block {
    position: absolute;
    right: 20px;
    top: 50%;
    background: #fff;
    color: #000000;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-family: 'themify';
    font-weight: 900;
    font-size: 11px;
}
.colles-block:before {
    content: "\e622";
}
.collapsed .colles-block:before {
    content: "\e61a";
}
.categories-content {
    padding: 20px;
}
.categories-content li a {
    color: #050845;
    margin-bottom: 10px;
    display: inline-block;
}
.categories-content li.active a {
    color: #000000;
}
.children li a{
    font-size: 13px;
}
.panel-head {
    position: relative;
    background: #000000;
    border-radius: 25px;
    padding: 11px 20px;
    color: #fff;
    cursor: pointer;
}
.panel-head.collapsed {
    background: #CFCFCF;
}
.panel-head.collapsed .colles-block {
    color: #cfcfcf;
}
.panel-head  h4 {
    margin: 0;
    color: #fff;
    font-size: 15px;
}
.accordion{
    margin-bottom: 20px;
}
.course-head {
    padding: 20px 0;
    margin-top: 30px;
}
.course-head .inner-title{
    margin-bottom: 10px;
}
.course-head .tutor-name {
    margin-bottom: 20px;
}
.course-head .price{
    font-size: 17px;
    font-weight: 600;
}
.class-description {
    padding: 60px 0;
}
.course-date {
    margin-top: 15px;
}
.course-date span{
    display: block;
    color: #000000;
}
.course-sidebar {
    padding-left: 32px;
    margin-top: -120px;
}
.course-2 .course-sidebar {
    margin-top: -180px;
}
.preview-video-box {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}
.preview-video-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.preview-video-box:before {
    position: absolute;
    background: rgb(0 0 0 / 38%);
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.pulse-icon {
    display: block;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    color: #fff !important;
    background: rgb(255 255 255 / 25%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 18px;
}
.course-curriculum-box {
    margin-bottom: 40px;
}
.class-desc-block {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 50px;
    padding: 10px 20px;
}
.class-desc-block i {
    font-size: 16px;
    background: #000000;
    color: #fff;
    width: 40px;
    height: 40px;
    display: block;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: center;
}
.class-desc-block h4 {
    font-size: 14px;
    margin-bottom: 0;
}
.class-desc-block p{
    color: #9e1f62;
}
.review-modal h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}
.review-form .form-group > label {
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}
.review-modal .modal-body {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 7px;
}
.review-modal textarea {
    min-height: 100px;
}
.buy-btns .btn{
    margin-right: 10px;
}
.buy-btns .btn:last-child{
    margin-right: 0;
}
.description-box h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
.description-box p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
}
.description-box .list li{
    color: #ffffff;
}
.list-dots li, .list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}
.list-dots li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    top: 6px;
    position: absolute;
    display: inline-block;
    left: 0;
    background: #180b45;
}
.list-check li:before {
    position: absolute;
    display: inline-block;
    left: 0;
    content: "\f00c";
    font-family: "FontAwesome";
    color: #9e1f62;
    top: 10px;
    font-weight: 600;
    font-size: 11px;
    transform: translateY(-50%);
}
.whatyoulearn.description-box {
    padding: 20px;
    border-radius: 5px;
}
.class-requiremsts-head{
    margin-bottom: 20px;
}
.description-box.class-requiremsts h3 {
    color: #ee1727 !important;
    margin-bottom: 0;
}
.description-box.class-requiremsts h3 i {
    margin-right: 3px;
    font-size: 15px;
}
.description-box.class-requiremsts .list-dots li:before{
    background: #ee1727 !important;
}
.course-status {
    text-align: center;
}
.course-status.online {
    color: #ee1727;
}
.course-status.offline {
    color: #A1A1A1;
}
.course-status i{
    display: block;
}
.class-description h2 {
    font-size: 22px;
    border-bottom: 1px solid #e0e0e9;
    padding-bottom: 15px;
}
.course-curriculum-accordion .lecture-group-title .total-time {
    width: 130px;
    display: inline-block;
}
.course-curriculum-accordion .lecture-group-title .title {
    max-width: 60%;
    margin-bottom: 0;
    font-size: 14px;
    color: #000000;
}
.course-curriculum-accordion .lecture-group-title {
    position: relative;
    padding: 12px 45px 12px 20px;
    background: #e3e7eb;
    cursor: pointer;
    height: auto;
    margin-top: 3px;
    border-radius: 5px;
}
.course-curriculum-accordion .lecture-group-title:before {
    display: inline-block;
    font-family: 'themify';
    font-weight: 900;
    position: absolute;
    right: 22px;
    font-size: 10px;
    top: 10px;
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="false"]:before {
    content: "\e64b";
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="true"]:before {
    content: "\e648";
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="true"] .total-lectures {
    display: none;
}
.course-curriculum-accordion .lecture-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.course-curriculum-accordion .lecture-list .lecture {
    padding: 12px 0 12px 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.course-curriculum-accordion .lecture-list .lecture .lecture-title {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -ms-webkit-transition: 0.3s;
}
.course-curriculum-accordion .lecture-list .lecture:before {
    content: "\f04b";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: #050845;
}
.course-curriculum-accordion .lecture-list .lecture.has-preview .lecture-title,
.course-curriculum-accordion .lecture-list .lecture.has-preview .lecture-preview{
    cursor: pointer;
}
.course-curriculum-accordion .lecture-list .lecture.has-preview .lecture-title:hover{
    color: #003845;
}
.media-left a {
    width: 70px;
    height: 70px;
    display: block;
    margin-right: 18px;
    border-radius: 50%;
    color: #fff;
    background: #000000;
    line-height: 70px;
    text-align: center;
    font-size: 25px;
}
.media-body h4 {
    font-size: 16px;
}
.reviews .media {
    margin-bottom: 25px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 15px;
}
.reviews .media:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.modal-content .close {
    color: #fff;
    text-shadow: 0 0 0 #fff;
    opacity: 1;
    right: 0;
}
.course-preview-modal .modal-body {
    padding: 0;
}
.embed-responsive-16by9::before {
    padding-top: 0;
}
.course-modal .modal-content,  .modal-header {
    background: #180B45;
    border: none;
}
.modal-title {
    color: #fff;
}
.modal-form {
    padding: 20px 0;
}
.responsive-menu, .menu-close{
    display: none !important;
}
.course-sidebar form {
    margin-top: 40px;
}
.select-duration .custom-control{
    margin-bottom: 20px;
}
.course-sidebar form .btn{
    padding: 12px 25px;
    margin-top: 30px;
}
.custom-control {
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 32px;
}
.:not(:disabled):active~.::before {
    color: #fff;
    background-color: rgb(102 4 139 / 19%);
    border-color: rgb(102 4 139 / 19%);
}
. {
    font-size: 13px;
}
.::before {
    top: 0;
    width: 20px;
    height: 20px;
    left: -32px;
}
.::after {
    top: 1px;
    left: -31px;
    width: 18px;
    height: 18px;
}
.:checked~.::before {
    border-color: #9e1f62 !important;
    background-color: #9e1f62 !important;
    box-shadow: 0 0 2px #9e1f624a !important;
}
.preview-book-box{
    padding-left: 50px;
}
.preview-book-box img{
    width: 100%;
}
.quantity {
    margin: 10px 0 25px 0;
}
.buttons-added .sign {
    width: 27px;
    height: 27px;
    padding: 0;
    text-align: center;
    background: #f5f5f5;
    color: #180B45;
    border-radius: 4px;
    border: none;
}
.buttons-added .sign:hover, .buttons-added .sign:focus{
    background: #180B45;
    color: #FEFF00;
}
.buttons-added .sign i{
    font-size: 10px;
}
.buttons-added input {
    border: none;
    height: 27px !important;
    line-height: 27px !important;
    text-align: center;
    padding: 0 5px;
    font-size: 12px;
    background: transparent !important;
    width: 100px;
    margin-bottom: 0;
}
.buttons-added input:focus{
    border: none;
}

.podcast-block{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 25px;
}
.podcast-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 7px 13px 0 rgb(137 140 148 / 10%);
}
.podcast-block .img-block {
    height: 245px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}
.podcast-block .img-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-podcast {
    position: absolute;
    background: #F14159;
    color: #fff;
    top: -20px;
    z-index: 99;
    left: 15px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
}
.play-podcast:hover, .podcast-block:hover .play-podcast {
    box-shadow: 0 0 10px rgb(137 140 148 / 40%);
    color: #fff;
}
.podcast-content {
    position: relative;
    padding: 25px 15px 20px 15px;
    background: #fff;
    border-radius: 0 0 5px 5px;
}
.podcast-content h3 {
    margin-bottom: 0;
    line-height: 20px;
}
.podcast-content h3 a {
    margin-right: 5px;
    font-weight: 500;
    color: #050845;
}
.podcast-block:hover h3 a{
    color: #493392;
}
.podcast-duration{
    color: #C2C2C2;
}

.blog-content {
    padding: 15px;
}
.blog-content .post-footer {
    padding-top: 0;
    border-top: none;
}
.blog-post .img-block img{
    border-radius: 8px;
}
.share-post {
    margin-top: 30px;
    text-align: right;
}
.share-post h6 {
    font-weight: 500;
    margin-bottom: 15px;
}
.share-post ul li a{
    width: 32px;
    height: 32px;
    margin-left: 5px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3 ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: inline-block;
}
.share-post ul li a:hover{
    transform: translateY(-3px);
}
.facebook {
    background: #3a5795;
}
.twitter {
    background: #00a5e5;
}
.tumblr {
    background: #36465d;
}
.pinterest {
    background: #cb2027;
}
.reddit {
    background: #7d5bbe;
}
.blog-post .blog-content {
    padding: 20px 0;
}
.blog-post .blog-content h2 {
    font-size: 23px;
}
.post-content {
    margin-top: 30px;
}
.post-content p {
    line-height: 35px;
    font-size: 15px;
}
.overlay-block{
    position: relative;
}
.overlay-block img{
    width: 100%;
}
.overlay-block:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(37 21 90 / 40%);
}
.contact-details li {
    list-style: none;
    text-align: left;
    padding-left: 60px;
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
    line-height: 24px;
}
.contact-details li i {
    position: absolute;
    left: 0;
    font-size: 18px;
    background: #180B45;
    color: #FEFF00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
}
.contact-details li strong {
    display: block;
    color: #333;
}
.contact-details li a{
    color: inherit;
}
.contact-details li span {
    color: #666;
    display: inline-block;
}
.gmap3-area {
    height: 400px;
    margin-top: 40px;
}
.head-btn {
    position: absolute;
    right: 0;
    top: 0;
}
.login-head {
    margin-bottom: 30px;
}
.forgot-pss {
    text-align: right;
    display: block;
    margin-top: 20px;
    color: #213C57;
}
.login-block {
    width: 100%;
    padding: 0 80px;
}
.account-section{
    border-radius: 10px;
    padding: 30px;
}
.account-section h2 {
    font-size: 21px;
    margin-bottom: 25px;
}
.order-status, .order-quantity {
    margin-left: 5px;
}
.order-block {
    margin-bottom: 15px;
    justify-content: space-between;
    padding-right: 20px;
    border-radius: 5px;
}
.order-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.order-block h3 a {
    font-size: 16px !important;
}
.order-block .img-block {
    height: 120px;
    width: 120px;
    border-radius: 5px 0 0 5px;
    margin-right: 10px;
    flex: none;
}
.order-block .tutor-name {
    display: block;
    margin-bottom: 20px;
}
.order-block .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-quantity{
    color: #050845;
}
.order-status .in-progress{
    color: #BEBEBE;
}
.order-status .canceled{
    color: #DF1010;
}
.order-status .done{
    color: #64da51;
}
.user-side a {
    display: block;
    color: #180B45;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.user-side a.active, .user-side a:hover{
    background: #180B45;
    color: #FEFF00;
}
.user-side a i {
    width: 25px;
    display: inline-block;
    font-size: 16px;
}
.account-section input, .modal input,  .account-section textarea, .modal textarea{
    background: #fff;
    border-radius: 5px;
}
.address-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.previous-address .link-muted:hover{
    color: #7ec3ed;
}
.previous-address .right-side {
    flex: none;
    font-weight: 600;
    min-width: 130px;
}
.previous-address .left-side {
    color: #999;
}
.new-add,  .new-add:hover{
    color: #7ec3ed;
    border-bottom: 1px dashed #7ec3ed;
}
.edit-address, .edit-address:hover {
    color: #BEBEBE;
}
.delete-address, .delete-address:hover {
    color: #DF1010;
    background: transparent;
}
.margin-bottom-10 {
    margin-bottom: 10px;
}
.account-section .quantity {
    margin: 0;
}
.account-section .buttons-added input {
    width: 70px;
}
.remove-item {
    background: transparent;
    border: none;
    color: #C2C2C2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}
.remove-item:hover, .remove-item:focus{
    color: #F14159;
}
.cart-coupon {
    background: #f9f9f9;
    margin: 25px 0;
    height: 40px;
    border-radius: 25px;
}
.btn-add {
    background: #000000;
    color: #fff;
    height: 100%;
    padding: 0 25px;
    border-radius: 25px;
    font-size: 13px;
}
.cart-coupon input {
    border: none;
    height: 100%;
    padding-left: 15px;
    color: #C2C2C2;
    font-size: 12px;
    margin-bottom: 0;
    background: transparent;
}
.cart-coupon input:focus{
    border-color: transparent;
}
.cart-summery {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    margin-left: 20px;
}
.cart-summery  h3 {
    font-size: 15px;
    margin-bottom: 15px;
}
.cart-price {
    font-weight: 600;
    font-size: 17px;
}
.order-list.checkout-page{
    padding: 20px;
    border-radius: 5px;
}
.order-list.checkout-page .order-block .img-block {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    margin-right: 15px;
}
.order-list.checkout-page .order-block .tutor-name {
    display: block;
    margin-bottom: 0;
}
.order-list.checkout-page .order-block{
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.price span{
    color: #050845;
}
.order-block .price {
    font-weight: 600;
}
.order-block .course-content {
    padding: 0;
}
.check-row{
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.check-row h5 {
    font-size: 14px;
}
.payment-note {
    color: #EB1818;
    margin: 20px 0;
    display: block;
}
.cart-payment {
    margin-bottom: 25px;
}
.cart-payment img {
    margin-left: 10px;
    height: 25px;
}
.hint {
    margin-bottom: 20px;
}
.levels-page .inner-title {
    width: 70%;
    margin: auto;
    margin-bottom: 60px;
}
.level-block {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 15px;
    justify-content: center;
    margin-right: 15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.level-block:hover {
    transform: translateY(-6px);
}
.level-block h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}
.level-block:first-child{
    background: #E05143;
}
.level-block:nth-child(2){
    background: #C71D66;
}
.level-block:nth-child(3){
    background: #044C74;
}
.level-block:nth-child(4){
    background: #8031A4;
}
.test-head {
    margin-bottom: 100px;
}
.test-head h1 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}
.test-time {
    color: #E50808;
    font-weight: 500;
}
.progress {
    height: 10px;
    border-radius: 0;
    overflow: visible;
    position: relative;
    margin: 20px 0  35px 0;
}
.progress-bar {
    background-color: #000000;
    position: relative;
}
.progress span {
    position: absolute;
    left: 0;
    bottom: -32px;
    color: #ffffff;
    right: 0;
    text-align: center;
    font-size: 14px;
}
.question-head {
    margin-bottom: 25px;
}
.question-head {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
}
.question-mark {
    color: #999;
    margin-left: 5px;
    margin-bottom: 0;
}
.answer-block {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    background: transparent;
    border: 1px solid #dedede;
}
.answer-block .custom-control{
    margin-bottom: 0;
}
.question-block {
    margin-bottom: 35px;
}
.question-block .:checked~.::before {
    border-color: #000000 !important;
    background-color: #000000 !important;
    box-shadow: 0 0 2px #000000 !important;
}
.question-block .:checked~.{
    color: #000000;
}
.exame-questions{
    width: 60%;
}
.exame-questions audio{
    margin-top: 15px;
}
.test-result {
    border-radius: 5px;
    width: 50%;
    margin: auto;
    padding: 25px;
    margin-bottom: 50px;
}
.result-head {
    margin-bottom: 30px;
}
.result-head h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}
.result {
    font-weight: 600;
    font-size: 16px;
}
.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.result-row:last-child{
    margin-bottom: 0;
}
.result-row span{
    color: #9e1f62;
}
.result-row h6 i{
    color: #000000;
    margin-right: 4px;
}
.result-summery {
    flex: 1;
    margin-right: 50px;
}
.test-result .btn main-custom-btn {
    min-width: 150px;
    padding: 8px 25px;
}
.owl-dots {
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 40px;
}
.owl-dot span {
    background: rgb(102 4 139 / 10%);
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    border-radius: 50%;
}
.owl-dot.active span{
    background: rgb(102 4 139 / 30%);
}
.team-block {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-bottom: 30px;
    padding: 25px 35px;
    border-radius: 5px;
}
.team-block:hover{
    transform: translateY(-6px);
    box-shadow: 0 7px 13px 0 rgb(137 140 148 / 10%);
}
.team-block .img-block {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
}
.team-block h3 {
    font-size: 16px;
    margin-bottom: 3px;
}
.team-block .btn {
    width: 80%;
    padding: 8px;
    font-size: 13px;
    margin: auto;
}
.team-block .position {
    font-size: 13px;
    margin-bottom: 20px;
}
.tutor-details{

}
.tutor-details h6 {
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.tutor-details h3 {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
}
.tutor-details {
    margin-bottom: 35px;
}
.inner-title.theme-color {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 500;
}
.resume p{
    margin-bottom: 15px;
}
.tutor-personal-details {
    padding-left: 60px;
}
.tutor-personal-details .img-block {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}
.total-rate {
    color: #050845;
    margin: 15px 0;
    font-size: 13px;
    font-weight: 500;
}
.login-page {
    width: 90%;
    margin: auto;
}
.login-page .img-box {
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}
.login-img {
    background: url(../images/login-bg.svg);
    height: 600px;
}
.login-content {
    padding: 30px 60px;
}
.login-head {
    margin-bottom: 50px;
}
.login-title {
    margin-bottom: 30px;
}
.login-title h2 {
    font-size: 20px;
    font-weight: 500;
}
.login-logo img {
    height: 50px;
}
.login-note {
    color: #c5c5c5;
    text-align: right;
    display: block;
    margin-top: 20px;
}
.custom-form.w50 {
    width: 50%;
    margin: auto;
}
.form-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 500;
}
.custom-form .form-control{
    border-color: transparent !important;
}
.custom-form .select2-selection {
    border: 1px solid transparent !important;
    background: #fff !important;
}
.custom-upload {
    background: #fff;
    border: 2px dashed #dedede;
    padding: 15px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    border-radius: 5px;
}
.custom-upload input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 99;
}
.custom-upload span {
    display: block;
    color: #050845;
}
.custom-upload .choose-file {
    background: #F9F9F9;
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    padding: 8px 30px;
    color: #999;
}
.custom-upload .choose-file:hover{
    color: #050845;
}
.custom-form .inner-title {
    font-size: 22px;
    margin-bottom: 40px;
}
.contact-info li {
    color: #C2C2C2;
    margin-bottom: 20px;
}
.contact-info li i {
    color: #000000;
    margin-right: 10px;
    font-size: 16px;
}
.direct-msg {
    border-top: 1px solid #dedede;
    padding-top: 25px;
    margin-top: 25px;
}
.direct-msg a i{
    font-size: 16px;
    margin-right: 4px;
}
.direct-msg a {
    background: #30BF39;
    color: #fff;
    font-weight: 500;
}
.contact-section .form-control, .edit-section .form-control, .edit-section .select2-selection{
    border-color: transparent !important;
}
.contact-section textarea{
    min-height: 150px;
}
.edit-section{
    padding: 30px;
}
.edit-section .form-control, .edit-section .select2-selection{
    background: #f9f9f9 !important;
}
.messages-head {
    margin-bottom: 25px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 25px;
}
.messages-head .inner-title {
    margin-bottom: 10px;
}
.messages-search {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 10px 15px;
}
.messages-search input {
    margin: 0;
    padding: 0;
    height: 25px;
    border: none;
    margin-left: 10px;
    color: #CFCFCF;
}
.messages-search i{
    color: #CFCFCF;
}
.messages-list{

}
.messages-list .item {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.messages-list .item.active {
    border: 1px solid #000000;
}
.left-side {
    display: flex;
    align-items: center;
}
.messages-list .item .img-block {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.messages-list .item h4 {
    font-size: 15px;
    margin-bottom: 0;
}
.messages-list .item .date {
    font-size: 12px;
}
.messages-list .item .status{
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #f1f1f1;
}
.messages-list .item .status.online {
    background: #000000;
}
.right-side {
    text-align: right;
}
.m-head {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    border-radius: 5px 5px 0 0;
}
.m-head .img-block {
    width: 40px;
    height: 40px;
    margin-right: 6px;
    border-radius: 50%;
}
.m-head h4{
    font-size: 15px;
    margin-bottom: 0;
}
.message-body {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 0 5px 5px;
}
.sender p, .receiver p{
    background: #F7F9FA;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    color: #777;
    display: inline-block;
}
.receiver p {
    background: rgb(102 4 139 / 4%);
    color: #000000;
}
.sender .date, .receiver .date {
    display: block;
    font-size: 12px;
}
.sender, .reciever{
    margin-bottom: 15px;
}
.receiver {
    text-align: right;
}
.message-footer {
    border-radius: 5px;
    border: 1px solid #eee;
    justify-content: space-between;
    display: flex;
    padding: 10px;
    align-items: center;
}
.message-footer .upload {
    padding-right: 10px;
    margin-right: 5px;
    border-right: 1px solid #eee;
    color: #050845;
    font-size: 13px;
    flex: none;
    position: relative;
}
.message-footer .upload input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    cursor: pointer;
    z-index: 99;
}
.message-footer .message-text {
    border: none;
    margin-bottom: 0;
    height: 30px;
    min-height: 30px;
    resize: none;
    padding: 0;
    padding: 0 5px;
    line-height: 30px;
}
.message-footer button {
    flex: none;
    height: 35px;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 13px;
    margin-left: 10px;
}
.myprofile-head {
    padding-top: 40px;
    padding-bottom: 40px;
}
.myprofile-head .img-block {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}
.profile-det h4{
    margin-bottom: 0;
}
.profile-det img{
    margin-left: 5px;
    height: 15px;
}
.profile-det  p {
    font-size: 13px;
}
.profile-det .btn {
    padding: 5px 25px;
    margin-top: 10px;
    font-size: 13px;
}
.tab-menu a {
    color: #050845;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px 5px 0 0;
}
.tab-menu a i{
    margin-right: 4px;
}

.white-bg{
    background: transparent !important;
}
.bg-white{
    background: transparent !important;

}
.tab-menu a.active{
    background: #9e1f62;
    color: #fff;
}
.website-views {
    color: #9e1f62;
    display: block;
    margin-top: 20px;
    font-size: 15px;
}
.website-views i{
    margin-right: 4px;
}
.rate {
    position: relative;
    width: auto;
    display: inline-block;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate > label{
    transition: 0.3s;
}
.rate:not(:checked) > label {
    float: right;
    width: 15px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 13px;
    color: #c6d7db;
    margin-bottom: 0;
    margin-right: 7px;
}
.rate:not(:checked) > label:before {
    font-family: "FontAwesome";
    content: "\f005";
    font-weight: 900;
    transition: all .25s;
}
.rate > input:checked ~ label {
    color: #ff8f2b;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #ff8f2b;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #ff8f2b;
}
.open-search, .close-search, .responsive-menu{
    display: none;
}
.messages-search input:focus{
    border-color: transparent;
}

.testimonials {
    padding: 25px 0 60px 0;
}
.testimonial {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #eee;
}
.testimonial p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 24px;
}
.testimonial .d-flex.flex-column.justify-content-end {
    text-align: right;
}
.testimonial h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: #000000;
}
.testimonial span {
    font-size: 12px;
    color: #C2C2C2;
}
@media (max-width:991px){
    .user-header {
        position: fixed;
        bottom: 0;
        z-index: 99;
        left: 0;
        right: 0;
        padding: 10px;
        height: 60px;
        display: flex;
        align-items: center;
        background: #f9f9f9;
    }
    .user-header ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .open-search, .responsive-menu {
        display: inline-block;
        font-size: 18px;
        margin-left: 15px;
    }
    .header-inner .my-logo img {
        max-height: 50px;
    }
    .close-search {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 18px;
        color: #fff;
        opacity: 0.8;
    }
    .header-search{
        display: none !important;
    }
    .header-search.active {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex !important;
        align-items: center;
        background: #000000ab;
        z-index: 99;
        padding: 20px;
    }
    .header-search form {
        width: 100%;
    }
    .header-pages.header-inner {
        background: #fff;
        box-shadow:  0 0 10px #ebe6e6;
    }
    .header-inner .nav-search li {
        margin-left: 20px;
    }
    .header-inner .nav-search li a {
        color: #53565A;
    }
    .header-home .lang-btn a {
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }
    .header-inner .responsive-menu{
        display: inline-block !important;
    }
    .open-search:focus, .responsive-menu:focus{
        color: inherit;
    }
    .header-inner .responsive-menu i{
        font-size: 22px;
    }
    .header-inner.header-pages .responsive-menu i{
        color: #53565A;
    }
    .navbar {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #fff;
        max-width: 515px;
        z-index: 99;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        overflow-x: hidden;
        overflow-y: auto;
        webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
        width: 250px;
        bottom: 60px;
        box-shadow: -7px 0px 40px 1px rgb(5 8 69 / 10%);
    }
    .navbar.active{
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);

    }
    .menu-close {
        padding: 30px 0;
        display: block !important;
    }
    .menu-close i {
        background: rgb(255 255 255 / 20%);
        width: 40px;
        height: 40px;
        display: block;
        margin: auto;
        line-height: 40px;
        border-radius: 50%;
        margin-right: 0;
        color: #fff;
    }
    .menu-close i:hover {
        background: #a47449;
        color: #fff;
    }
    .header-inner .navbar .nav > li {
        display: block;
        width: 100%;
    }
    .header-inner .navbar .nav li a {
        padding: 15px;
        position: relative;
        color: #fff;
        font-weight: normal;
        margin: 5px 0;
    }
    .header-inner .nav-search li a i {
        font-weight: normal;
        font-size: 19px;
        color: #53565A;
    }
    .header-inner.header-pages .nav-search li a i{
        font-weight: 500;
    }
    .header-inner .navbar .nav li a i {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header-inner .navbar .nav .dropdown {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
        display: none;
        transition: none;
    }
    .header-inner .navbar .nav li a:before {
        content: none;
    }
    .header-inner .navbar .nav li .dropdown li a {
        background: transparent;
        color: #fff;
    }
    .service-block {
        margin-bottom: 25px;
    }
    .header-inner .navbar .nav .dropdown{
        background: transparent;
    }
    .home-about {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .aboutHome-section .shape {
        height: 10px;
    }
    .aboutHome-section{
        margin-bottom: 0;
    }
    .feature-block .img-box{
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .feature-block {
        margin-bottom: 25px;
    }
    .subscribe .container > .d-flex.align-items-center {
        flex-direction: column;
        text-align: left;
        align-items: flex-start !important;
    }
    .subscribe h2 {
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 20px;
        width: 100%;
        line-height: 35px;
    }
    .subscribe-form .btn {
        flex: none;
        width: auto;
    }
    .subscribe {
        padding: 70px 0;
    }
    .footer-inner .owl-item > div {
        width: 100% !important;
        flex: none;
        max-width: 100%;
        padding: 0;
    }
    .footer-inner .owl-item:last-child{
        margin-right: 0;
    }
    .social-icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 7px;
    }
    .links {
        padding-left: 25px;
    }
    .myprofile-head .img-block {
        width: 80px;
        height: 80px;
    }
    .direct-msg {
        margin-bottom: 30px;
    }
    .custom-form.w50 {
        width: 100%;
    }
    .login-content {
        padding: 30px 0;
    }
    .tutor-profile > .row {
        display: flex;
        flex-flow: column-reverse;
    }
    .tutor-personal-details {
        padding-left: 0;
        margin-bottom: 20px;
    }
    .tutor-personal-details .img-block {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
        float: left;
        margin-right: 10px;
    }
    .team-block {
        margin-bottom: 25px;
        padding: 20px 10px;
    }
    .test-result {
        width: 100%;
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    .test-result .d-flex.align-items-end {
        flex-direction: column;
        justify-content: flex-start !important;
        text-align: left;
    }
    .result-summery {
        margin-bottom: 10px;
        margin-right: 0;
        width: 100%;
    }
    .exame-questions {
        width: 100%;
    }
    .levels-page .inner-title {
        width: 100%;
    }
    .course-levels {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .level-block {
        flex: none;
    }
    .total-rate {
        margin: 10px 0;
    }
    .cart-summery {
        margin-left: 0;
        margin-top: 25px;
    }
    .page-head {
        background: url(../images/web-stock-online-learning-b-x-1024.jpg) right center no-repeat;
        background-size: cover;
    }
    .order-block > .d-flex.align-items-center {
        text-align: left;
    }
    .order-block .img-block {
        height: 100px;
        width: 100px;
        border-radius: 5px;
    }
    .account-section {
        padding: 20px 20px;
    }
    .inner-page {
        padding: 40px 0;
    }
    .booking-content {
        margin-top: 30px;
    }
    .booking-content .theme-btn {
        width: 50%;
        margin-top: 10px;
    }
    .address-block {
        display: block !important;
    }
    .address-operations {
        padding-left: 0;
        text-align: right;
    }
    .previous-address .left-side {
        font-size: 13px;
    }
    .login-block {
        width: 100%;
        padding: 0;
        padding-top: 50px;
        margin-bottom: 30px;
    }
    .head-btn {
        right: 20px;
    }
    .class-description {
        margin-top: 25px;
    }
    .preview-book-box {
        padding-left: 0;
    }
    .course-content-area > .row {
        flex-direction: column-reverse;
    }
    .book-item .img-block {
        height: 220px;
    }
    .books-grid .theme-btn{
        padding: 10px;
        width: 100%;
        font-size: 14px;
    }
    .book-item h3 a {
        font-size: 17px;
    }
    .course-sidebar {
        padding-left: 0;
    }
    .slide-description{
        display: none;
    }
    .section {
        padding: 40px 0;
    }
    .title {
        margin-bottom: 15px;
    }
    .title-description {
        width: 100%;
    }
    .course-block {
        padding: 10px 10px;
    }
    .order-block .tutor-name {
        display: block;
        margin-bottom: 5px;
    }
    .order-list.checkout-page .order-block {
        flex-direction: column;
        padding-right: 0;
    }
    .order-status {
        margin-left: 0;
        text-align: right;
    }
    .course-2 .course-sidebar, .course-sidebar{
        margin-top: 0;
    }
    .inner-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .course-desc h3{
        line-height: 20px;
    }

    .course-desc h3 a {
        font-size: 16px;
    }
    .course-desc p {
        line-height: 23px;
        font-size: 13px;
        text-overflow: ellipsis;
        height: 50px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .course-img {
        margin-right: 10px;
        width: 90px;
        height: 90px;
    }
    .blog-list, .courses-list {
        margin-top: 20px;
    }
    .section-block {
        margin-bottom: 40px;
    }
    .inner-page .user-side{
        display: none !important;
    }
    .user-side.user-responsive{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        padding: 0 10px;
        z-index: 99;
        box-shadow: 0px 0 10px rgb(46 51 103 / 20%);
    }
    .user-side.user-responsive span{
        display: none;
    }
    .user-side.user-responsive a {
        position: relative;
        margin-bottom: 0;
        padding: 20px 10px;
    }
    .user-side.user-responsive a i {
        width: auto;
        display: block;
        font-size: 20px;

    }
    .lnr-cart{
        position: relative;
    }
    .user-side.user-responsive .lnr-cart:after {
        content: "";
        position: absolute;
        top: 0;
        background: #f81414;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        right: -2px;
    }
    .user-side.user-responsive a:before {
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        height: 3px;
        background: transparent;
    }
    .user-side.user-responsive a.active, .user-side.user-responsive a:hover {
        background: transparent;
        color: #493392;
    }
    .user-side.user-responsive a.active:before{
        background: #493392;
    }
    body{
        padding-bottom: 60px;
    }
    .login-btn, .cart-btn{
        display: none !important;
    }
    .fc-event-inner {
        font-size: 9px;
        font-weight: 300!important;
        padding: 5px 5px!important;
        border-radius: 3px;
        overflow: visible !important;
    }
    footer {
        padding: 25px 0;
    }
}
.membership-icon{
    width: 30px;
    height: 30px;
    margin-left: 5px;
    border-radius: 50%;
}



.play-video{

    position: absolute;
    top: 50%;
    left: 50%;
    background: #EAB22B;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    z-index: 9;
    transition: all .3s ease-in-out;
    transform: translate(-50%, -50%);
}
