.section-heading {}


/*====================
Page Banner Area
======================*/
.page-header {
    padding: 90px 0px;
    background: #F4F5F8;
    position: relative;
    background: url("../images/bg/page-title.html");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(3, 31, 66, 0.9);
    z-index: -1;
}

.page-header .title-block {
    text-align: center;
}

.page-header .title-block h1 {
    color: #fff;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.page-header .title-block ul li {
    position: relative;
    padding-right: 20px;
    color: #fff;
    display: inline-block;
}

.page-header .title-block ul li:after {
    position: absolute;
    content: "/";
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto 0px;
    font-size: 14px;
    margin-right: 3px;
}

.page-header .title-block ul li:last-child:after {
    display: none;
}

.page-header .title-block ul li a {
    font-weight: 600;
}

/*-------------------
BUTTONS STYLE
----------------=----*/
.btn {
    /*font-weight: 600;*/
    position: relative;
    text-transform: capitalize;
    padding: 14px 32px;
    border-radius: 0px;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.6s ease;
}

.btn:focus {
    box-shadow: none !important;
}

.btn-radius {
    border-radius: 35px;
}

.btn-main {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
    box-sizing: border-box;
    border-width: 1px;
}

.btn-main:hover {
    border-color: var(--theme-secondary-color);
    color: #fff;
    background: var(--theme-secondary-color);
}

.btn-main-2 {
    border-color: var(--theme-secondary-color);
    color: #fff;
    background: var(--theme-secondary-color);
}

.btn-main-2:hover {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
}

.btn-main-outline {
    background: transparent;
    color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.btn-main-outline:hover {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
}

.btn-main2-outline {
    background: transparent;
    color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
}

.btn-main2-outline:hover {
    background: var(--theme-secondary-color);
    color: #fff;
    border-color: var(--theme-secondary-color);
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--theme-primary-color);
}

.btn-white:hover {
    border-color: var(--theme-primary-color);
    color: #fff;
    background: var(--theme-primary-color);
}

.btn-white-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-white-outline:hover {
    border-color: var(--theme-primary-color);
    color: #fff;
    background: var(--theme-primary-color);
}

.btn-grey {
    border-color: #ddd;
    color: #222;
    background: #ddd;
}

.btn-grey:hover {
    border-color: var(--theme-primary-color);
    color: #fff;
    background: var(--theme-primary-color);
}

.btn-grey-outline {
    color: #909090;
    border-color: #DDDDDD;
    border-width: 1px;
    background: transparent;
    box-sizing: border-box;
}

.btn-grey-outline:hover {
    border-color: var(--theme-primary-color);
    color: #fff;
    background: var(--theme-primary-color);
}

.btn-green,
.btn-green:hover {
    background: #41D25D;
    color: #fff;
    border-color: #41D25D;
}

.btn-light-yellow,
.btn-light-yellow:hover {
    background: #FEE39C;
    color: var(--theme-content-color);
    border-color: #FEE39C;
}

.btn-sm {
    padding: 8px 30px;
    font-size: 16px;
    border-width: 1px;
}

.btn-sm-2 {
    padding: 6px 24px;
    font-size: 14px;
    border-width: 1px;
}

.btn-sm-3 {
    padding: 2px 16px;
    font-size: 13px;
    border-width: 1px;
}

.btn-vip,
.btn-vip:hover {
    background: #F7DD88;
    color: #665D34;
    border-color: #F7DD88;
}

.btn-vip-outline,
.btn-vip-outline:hover {
    background: transparent;
    color: #CEA360;
    border: 1px solid #CDA261;
}


.btn-orange,
.btn-orange:hover {
    border-color: #ED5B1E;
    color: #fff;
    background: #ED5B1E;
}


.container {
    width: 1280px;
    margin: 0 auto;
}

/*-------------------------
Main Menu header
-------------------------*/
.header-search {
    height: 120px;
}

.header-search-input {
    position: relative;
    color: #999999;
    margin-right: 58px;
}

.header-search-input input {
    width: 408px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 5px 0px 0px 5px;
    border: 2px solid #EDEDED;
    padding-left: 38px;
    color: #999999;
}

.header-search-input .iconfont {
    position: absolute;
    left: 14px;
    top: 7px;
    font-size: 18px;
    /* transform: translate(-50%,-50%); */
}

.header-search-input .tips {
    font-size: 13px;
    color: #666666;
}

.header-search-input .tips a {
    padding-right: 7px;
    padding-left: 7px;
    position: relative;
}

.header-search-input .tips a::after {
    content: "|";
    position: absolute;
    right: -3px;
    /* top: 0; */
    /* height: 100%; */
}

.header-search-input .tips span:first-child {
    padding: 0
}

.header-search-input .tips span:first-child::after,
.header-search-input .tips a:last-child::after {
    content: "";
}

.header-search-input .btn {
    width: 106px;
    height: 45px;
    background: #E62129;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
}

.header-search .consult {
    margin-top: 20px;

}

.header-search .consult .img {
    margin-bottom: -8px;
}

.header-search .consult p {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.header-search .consult a {
    width: 89px;
    height: 25px;
    line-height: 25px;
    background: #FFFFFF;
    border-radius: 13px;
    border: 1px solid #D53636;
    font-size: 14px;
    color: #D73636;
    cursor: pointer;
}


.header-navbar {
    /* box-shadow: rgba(0, 0, 0, 0.04) 0px 6px 15px 0px; */
    background: #ffffff;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}

.header-navbar .header-top {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #ddd
        /* background: #2E2828; */
        /* padding-top: 8px;
    padding-bottom: 8px; */
}

.header-navbar .header-top a {
    color: var(--theme-text-color);
}

.header-navbar .header-nav {
    height: 52px;
    background-color: #e62129
        /* padding-top: 18px;
    padding-bottom: 18px; */
}

.header-navbar .header-nav .nav-item {
    height: 52px;
}

.header-navbar .site-logo {
    /*width: 10%;*/
    width: 140px;
    margin-right: 40px;
}

.header-navbar .site-logo a {
    max-width: 140px;
}


/*all-classify*/


.header-navbar .all-classify {
    width: 260px;
    font-size: 15px;
    color: #fff;
    position: relative;
    padding-left: 15px;
    background-color: #ab030a;
    margin-right: 60px;
    box-sizing: border-box;
}

.header-navbar .all-classify .show-all-classify {
    height: 52px;
    line-height: 52px;
}



.submenu-map {
    width: 260px;
    height: 470px;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 52px;
    left: 0;
}

.header-navbar .all-classify .active {
    opacity: 1;
    visibility: visible;
}

.submenu-map .left-ul {
    padding: 21px 19px;
}

.submenu-map .left-ul li {
    margin-bottom: 10px;
}

.submenu-map .left-ul li .type-title {
    height: 38px;
    background: #FFF1F1;
}

.submenu-map .left-ul li .type-title p {
    font-weight: bold;
    font-size: 15px;
    color: #333333;
}

.submenu-map .left-ul li .type-title a {
    color: #666666;
    font-size: 13px;
}

.submenu-map .left-ul li .content {
    margin-top: 10px;
    flex-wrap: wrap;
}

.submenu-map .left-ul li .content  a {
    font-size: 13px;
    margin-right: 7px;
    color: #666666;
    line-height: 25px;

    font-weight: 500;
}
.submenu-map .left-ul li .content .list a:last-child{
    margin-right: 0;
}

.submenu-map .left-ul li .content a:hover {
    color: var(--theme-primary-color);
}


.header-navbar .all-classify .right-con {
    max-height: inherit;
    overflow-y: auto;
    display: none;
}

.header-navbar .all-classify .right-con.active {
    display: block;
}

.header-navbar .all-classify .nav .nav-link {
    font-size: 14px;
    color: var(--theme-text-color);
    padding: 0.1rem 0;
    margin-right: 1.2rem;
}

.header-navbar .all-classify .nav .nav-link.active,
.header-navbar .nav .nav-link:hover {
    color: var(--theme-primary-color);
}

.header-navbar .all-classify .nav.nav-course .nav-link {
    width: 50%;
    margin-right: 0;
    padding-right: 1.2rem;
}



.header-navbar .primary-menu {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header-navbar .primary-menu li {
    position: relative;
    /* height: 52px;
    line-height: 50px; */
}


.header-navbar .primary-menu li .a {
    display: block;
    font-size: 15px;
    color: #fff;
    text-transform: capitalize;
    font-family: var(--theme-heading-font);
}
.header-navbar .primary-menu li .a{
    line-height: 52px;
}
.header-navbar .primary-menu li.menu.active .a,
.header-navbar .primary-menu li.menu .a:hover {
    border-bottom: 2px solid #fff;
    line-height: 50px;
}




.header-navbar .primary-menu li .menu-trigger {
    font-size: 12px;
    font-weight: 500;
    color: #222;
    position: absolute;
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 1;
    transition: all 0.3s ease-out 0s;
}


.header-navbar .primary-menu li:not(:last-child) {
    margin-right: 42px;
}


.header-navbar .primary-menu li .submenu {
    width: 200px;
    text-align: center;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    height: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
}

/* .header-navbar .primary-menu li .submenu:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-bottom: 8px solid var(--theme-primary-color);
    border-right: 7px solid transparent;
    background: transparent;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
} */

.header-navbar .primary-menu li:hover>.submenu {
    visibility: visible;
    opacity: 1;
}


.header-navbar .primary-menu li .submenu li {
    line-height: 1;
    margin: 0;

}

.header-navbar .primary-menu li .submenu li a {
    padding: 10px 15px;
    /* height: 34px; */
    line-height: 34px;
    display: block;
    color: #666;
    padding: 0 10px;

}

.header-navbar .primary-menu li .submenu li a:hover {
    background: rgb(245 0 1 / 10%);
}

.header-navbar .primary-menu li .bqkc-submenu {
    width: 586px;
    /* opacity:1;
    visibility: visible; */
    padding: 15px 25px;
    box-sizing: border-box;
    min-height: 410px;
    max-height: 500px;
    overflow: auto;
    top: 52px;
}

.header-navbar .primary-menu li .submenu .title {
    text-align: left;
    padding: 10px 12px;
    font-weight: 800;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    background: #E5E5E5;
    margin-bottom: 15px;
}

.header-navbar .primary-menu li .submenu .title span {
    border-left: 4px solid #F50001;
    padding: 0 4px;
}

/* .header-navbar .primary-menu li .submenu span:last-child{} */

.header-navbar .primary-menu li .bqkc-submenu ul {
    display: flex;
    flex-wrap: wrap;
    /* background-color: #f4f4f4; */
}

.header-navbar .primary-menu li .bqkc-submenu li {
    width: 48%;
    height: 54px;
    margin-right: 15px;
    margin-bottom: 10px;
    text-align: left;
}
.header-navbar .primary-menu li .bqkc-submenu li  a{
    padding: 6px;
}
.header-navbar .primary-menu li .bqkc-submenu li img{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.header-navbar .primary-menu li .bqkc-submenu li:nth-child(2n) {
    margin-right: 0;
}
.header-navbar .primary-menu li .bqkc-submenu li .right{
    margin-left: 10px;
}
.header-navbar .primary-menu li .bqkc-submenu li .right p{
    line-height: 1.4;
    font-size: 17px;
    
}
.header-navbar .primary-menu li .bqkc-submenu li .right p:last-child{
    font-size: 13px;
}
.header-navbar .nav-toggler {
    width: 53px;
    height: 53px;
    background: #fff;
    display: inline-block;
    text-align: center;
    line-height: 53px;
    font-size: 20px;
}

.header-navbar .nav-toggler:hover {
    background: var(--theme-primary-color);
    color: #fff;
}





.header-navbar a.nav-close {
    display: none;
}

/*---------------------
Header menu contact
---------------------*/
.header-search {
    font-size: 14px;
}



.header-search a:hover {
    color: var(--theme-primary-color);
}

.header-socials {
    font-size: 14px;
}

.header-socials a {
    margin-left: 5px;
    color: #647589;
}

.header-socials a:hover {
    color: var(--theme-primary-color);
}

/*-------------------------------
Menu center bottom
-----------------------------*/
.header-style-2 .header-mid {
    padding-bottom: 30px;
}

.menu-center {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    line-height: 70px;
}

.menu-center .primary-menu {
    justify-content: center;
}

.menu-center.style-1 .primary-menu li:hover>.submenu a:before {
    display: none;
}

.menu-center.style-1 .primary-menu li:hover>.submenu a:hover {
    color: #000;
}

.menu-center.style-1 .primary-menu a {
    position: relative;
    padding-top: 30px;
}

.menu-center.style-1 .primary-menu a:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    background: #f41f1c;
    width: 100%;
    height: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.menu-center.style-1 .primary-menu a:hover:before {
    opacity: 1;
    visibility: visible;
}

/*----------------------
Menu top
---------------------*/
.bg-color1 {
    background: #F7EEE9;
}

.menu-top {
    margin-bottom: 50px;
    padding: 12px 0px;
}

.menu-top .header-socials a {
    color: #000;
}

.menu-top .header-socials a:hover {
    color: var(--theme-primary-color);
}

.menu-top .header-search a:hover {
    color: #fff;
    background: #000;
}

.header-topbar {
    background: #031F42;
    padding: 5px 0px;
}

.border-top-bottom {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.header-contact a {
    color: #fff;
}

.header-cart a {
    color: #000;
}

.header-cart a i {
    margin-right: 5px;
}

.topbar-style-1 .header-socials a {
    color: #fff;
    margin-left: 15px;
}

.topbar-style-1 .header-socials a:hover {
    color: var(--theme-primary-color);
}

.bg-icon a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    background: #FF5369;
    color: #fff;
}

.bg-icon a:hover {
    background: #f3f3f3;
    color: var(--theme-primary-color);
}

.header-info-style1 .header-cart a,
.header-info-style1 .header-search a {
    color: #444;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    border: 1px solid var(--theme-fourth-color);
    font-size: 13px;
}

.header-info-style1 .header-cart a:hover,
.header-info-style1 .header-search a:hover {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
}

.header-btn {
    margin-left: 40px;
    border-left: 1px solid #e1e1e1;
    padding-left: 20px;
}

.header-btn .login {
    color: #000;
    margin-right: 15px;
}

.header-btn .login:hover {
    color: var(--theme-primary-color);
}

.header-search-bar {
    position: relative;
}

.header-search-bar .form-control {
    background: #f5f5f5;
    border-color: transparent;
    padding: 10px 20px;
    border-radius: 4px;
}

.header-search-bar .form-control:focus,
.header-search-bar .form-control:hover {
    border-color: #ddd;
    background: #fff;
}

.header-search-bar .search-submit {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #000;
}

.header-search-bar .search-submit:hover {
    color: var(--theme-primary-color);
}

.menu-2 {
    padding: 20px 0px;
}

.topbar-noticebar {
    background: #031F42;
}

.header-notice {
    color: #fff;
    font-size: 14px;
}

.mini-cart {
    margin-right: 15px;
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 18px;
    color: #000;
}

.mini-cart:hover {
    color: var(--theme-primary-color);
}

.mini-cart .cart-count {
    position: absolute;
    content: "";
    top: -8px;
    right: 4px;
    width: 20px;
    background: var(--theme-primary-color);
    color: #fff;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 100%;
    font-size: 11px;
}

.border-left-0 {
    border-left: 0px;
}

/*---------------------
Header Style 3
-----------------------*/
.header-style-3 .header-mid {
    padding: 20px 0px;
}

.header-style-3 .header-navbar {
    box-shadow: none;
    padding: 0px 0px;
}

.header-style-3 .header-cart a,
.header-style-3 .header-search a,
.header-style-3 .header-socials a {
    color: #647589;
}

.header-style-3 .header-cart a:hover,
.header-style-3 .header-search a:hover,
.header-style-3 .header-socials a:hover {
    color: var(--theme-primary-color);
}

.header-style-3 .cart-icon {
    position: relative;
}

.header-style-3 .cart-icon .count-no {
    position: absolute;
    content: "";
    top: -16px;
    right: -9px;
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 21px;
    border-radius: 100%;
}

.header-style-3 .header-user {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    line-height: 40px;
    border-radius: 100%;
    transition: all .4s;
}

.header-style-3 .header-user a {
    color: #647589;
}

.header-style-3 .header-user:hover {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.header-style-3 .header-user:hover a {
    color: #fff;
}

.page_search_box {
    position: fixed;
    width: 100%;
    height: 0;
    background: #ffffff;
    z-index: 999;
    left: 0;
    top: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.search_close {
    position: absolute;
    top: 50px;
    right: 100px;
}

.search_close i {
    color: var(--theme-primary-color);
}

.page_search_box form {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

/*.border-bottom {*/
/*    border-bottom: 1px solid #dee2e6 !important;*/
/*}*/

.page_search_box form input {
    width: 100%;
    background: none;
    height: 50px;
    font-size: 24px;
    color: #373737;
    font-weight: 400;
    padding: 0 50px 0 0;
}

.page_search_box form button {
    position: absolute;
    bottom: 11px;
    right: 0;
    border: 0;
    padding: 0;
    background: none;
    font-size: 20px;
}

.page_search_box.active {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.header-navbar.mobile-menu .site-navbar.menu-on .submenu li a:hover {
    color: #fff;
}

.offcanvas-icon .nav-toggler {
    background: #000;
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.offcanvas-icon .nav-toggler:hover {
    background: var(--theme-primary-color);
}

.header-category-menu li.has-submenu {
    position: relative;
}

.header-category-menu li.has-submenu a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-transform: capitalize;
    font-family: var(--theme-heading-font);
}

.header-category-menu li.has-submenu .submenu a {
    padding: 10px 20px;
    display: block;
    color: #000;
    opacity: .6;
}

.header-category-menu li.has-submenu .submenu a:hover {
    opacity: 1;
    color: var(--theme-primary-color);
}

.header-category-menu .submenu {
    position: absolute;
    left: 0;
    top: 120%;
    min-width: 250px;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    height: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding-left: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-category-menu li.has-submenu:hover>.submenu {
    visibility: visible;
    top: 100%;
    opacity: 1;
}

/*.header-style-1 .header-navbar {*/
/*  padding: 25px 0px;*/
/*}*/

.topbar-style-2 {
    padding: 10px 0px;
}

.topbar-style-2 .header-btn {
    border-color: rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.topbar-style-2 .header-btn a {
    color: #fff;
}

.topbar-style-2 .header-btn i {
    margin-right: 10px;
    color: var(--theme-secondary-color);
}

.topbar-style-2 .header-socials a:hover {
    color: #fff;
}

.header-contact ul li {
    margin-right: 25px !important;
    color: #fff;
    opacity: .9;
    transition: all .4s;
    font-size: 15px;
}

.header-contact ul li:hover {
    opacity: 1;
}

/*--------------------------
right-nav-map
----------------------------*/

.right-nav-map {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
}

.right-nav-map .box {
    position: relative;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.078);
    /*box-shadow: 0 0 10px #cccccc;*/
}

.right-nav-map .box:hover .code {
    display: block;
}


.right-nav-map .box .code {
    display: none;
    width: 158px;
    padding: 12px 15px;
    background: #ffffff;
    box-shadow: 0 0 3px #c1b0b0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-110%, -50%);
}

.right-nav-map .box .code:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 12px solid #ffffff;
    border-bottom: 12px solid transparent;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: 10;
}

.right-nav-map .tel p {
    display: block;
    padding-top: 23px;
    position: relative;
}

.right-nav-map .tel p:after {
    mask: url(../images/tinified/aside-tel.svg);
    -webkit-mask: url(../images/tinified/aside-tel.svg);
    content: '';
    position: absolute;
    left: 26px;
    top: 0px;
    height: 24px;
    width: 24px;
    background-color: #333;
}

/* ================
 BAnner
================*/
.content-padding {
    padding: 100px 0px;
}

.banner {
    padding: 80px 0px 120px;
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 92%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 92%, 0% 100%);
    background: #F4F9FF;
}

.banner .banner-content h1 {
    font-size: 60px;
    line-height: 68px;
    letter-spacing: -1.3px;
    margin: 15px 0px 15px;
}

.banner .banner-content p {
    font-size: 18px;
    line-height: 34px;
    max-width: 80%;
    margin-bottom: 20px;
}

.banner .banner-content .subheading {
    color: var(--theme-primary-color);
}

.banner .category-name {
    margin-top: 15px;
}

.banner .category-name a {
    color: #333;
    text-decoration: underline;
}

.banner .category-name a:hover {
    color: var(--theme-primary-color);
}

.banner-form {
    position: relative;
}

.banner-form .form-control {
    height: 60px;
    border-radius: 35px;
    background: #fff;
    border-width: 2px;
    padding-right: 135px;
    padding-left: 25px;
    border: 2px solid #ddd;
}

.banner-form .form-control:focus {
    border-color: var(--theme-primary-color);
}

.banner-form button {
    position: absolute;
    right: 5px;
    top: 4px;
    width: auto;
    padding: 0px 30px;
    height: 87%;
    text-align: center;
    line-height: 53px;
    background: var(--theme-primary-color);
    color: #fff;
    border-radius: 35px;
}

.banner-form button i {
    margin-left: 7px;
}

.banner-form button:hover {
    background: var(--theme-secondary-color);
}

/*-------------------
Banner style 2
-------------------*/
.banner-style-2 {
    padding: 140px 0px 160px;
    background: url("../images/banner/banner-2.html") no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.banner-style-2:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background: #120F2D;
    opacity: .6;
    z-index: -1;
}

.banner-style-2 .banner-content h1 {
    font-size: 70px;
    margin: 15px 0px 15px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
}

.banner-style-2 .banner-content p {
    font-size: 18px;
    line-height: 34px;
    max-width: 80%;
    color: #fff;
    margin: 0 auto 30px;
}

.banner-style-2 .banner-content .subheading {
    color: #fff;
}

.banner-style-2 .banner-content .cd-headline.clip span {
    padding: 0px;
}

.banner-style-2 .banner-content .cd-words-wrapper b {
    text-decoration: underline;
    font-weight: 700;
}

.banner-style-2 .btn-white {
    color: #000;
}

.banner-style-2 .btn-white:hover {
    color: #fff;
}

/*--------------------------
Banner-3
----------------------------*/
.banner-padding {
    padding: 120px 0px;
}

.banner-style-3 {
    position: relative;
    background: url("../images/banner/banner-3.html") no-repeat center center;
    background-size: cover;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 92%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 92%, 0% 100%);
    position: relative;
    z-index: 1;
}

.banner-style-3:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background: #120F2D;
    opacity: .7;
    z-index: -1;
}

.banner-style-3 .banner-content h1 {
    font-size: 52px;
    line-height: 62px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.banner-style-3 .banner-content p {
    max-width: 70%;
    margin: 0px auto 30px;
    text-align: center;
    color: #fff;
}

.banner-style-4 {
    position: relative;
    z-index: 1;
    background: #2F2D51;
    padding-bottom: 220px;
}

.banner-style-4:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background: url("../images/banner/shape_bg.html") no-repeat center center;
    background-size: cover;
    opacity: .1;
    z-index: -1;
}

.banner-style-4 .banner-content .subheading {
    color: #fff;
}

.banner-style-4 .banner-content h1 {
    font-size: 48px;
    line-height: 62px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.banner-content .h1-title span {
    position: relative;
}

.banner-content .h1-title span img {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: section-animation 3s infinite;
    -webkit-animation: section-animation 3s infinite;
}

@keyframes section-animation {
    0% {
        width: 0;
    }

    15% {
        width: 100%;
    }

    85% {
        opacity: 1;
    }

    90% {
        width: 100%;
        opacity: 0;
    }

    to {
        width: 0;
        opacity: 0;
    }
}



.banner-style-4 .banner-content p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    opacity: .7;
}


.banner-style-4 .shape-1 {
    width: 165px;
    height: 111px;
    background: url("../images/home/shape-1.html") no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: .9;
    position: absolute;
    left: -180px;
    top: -20px;
}



/*--------------------------
Counter
----------------------*/
.counter-box {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all .4s ease;
    padding: 30px 30px 30px 30px;
    border-radius: 5px;
}

.counter-box i {
    font-size: 50px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    border-radius: 100%;
    transition: all .4s ease;
    display: block;
    color: var(--theme-secondary-color);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #fff;
    margin: 0 auto;
    margin-bottom: 20px;
}

.counter-box .count span {
    transition: all .4s ease;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
}

.counter-box p {
    margin-bottom: 0px;
    font-weight: 600;
    color: #fff;
}

.counter-box:hover i {
    background: var(--theme-secondary-color);
    color: #fff;
}

.bg-1 {
    background: #DD246E;
}

.bg-2 {
    background: #00C0A6;
}

.bg-3 {
    background: #1162FC;
}

.bg-4 {
    background: #8007E6;
}

.bg-5 {
    background: #FA7919;
}

.bg-primary {
    background: var(--theme-primary-color) !important;
}

.bg-secondary {
    background: var(--theme-secondary-color) !important;
}

.bg-page {
    background: #F4F5F6 !important;
}

.bg-page-2 {
    background: #F7F9FA !important;
}

/*---------------------
Feature intro
----------------------*/
.feature-inner {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07);
    margin-top: -70px;
}

.feature-item {
    transition: all .4s ease;
}

.feature-item .feature-text {
    overflow: hidden;
}

.feature-item .feature-text h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item .feature-text p {
    margin-bottom: 0px;
    font-size: 14px;
}

.feature-style-left .feature-icon {
    margin-right: 30px;
    float: left;
    border-radius: 5px;
    overflow: hidden;
}

.feature-style-left .feature-icon i,
.feature-style-left .feature-icon img {
    width: 60px;
    height: 60px;
    text-align: center;
    color: #fff;
    line-height: 60px;
    font-size: 20px;
}

.icon-bg-1 {
    background: #2878EB;
}

.icon-bg-2 {
    background: #F14D5D;
}

.icon-bg-3 {
    background: #4D41E1;
}

.feature-inner.style-2 .feature-style-left {
    align-items: center;
}

.feature-inner.style-2 .feature-style-left .feature-icon {
    margin-right: 16px;
}

.feature-inner.style-2 .feature-style-left .feature-icon i,
.feature-inner.style-2 .feature-style-left .feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-inner.style-3 .feature-text p {
    color: #95643D;
}

.feature-inner.style-3 .feature-icon img {
    width: 60px;
}




.features-2 {
    padding: 70px 0px 100px;
}

.feature-style-top {
    text-align: center;
    transition: all .4s ease;
    padding: 40px;
    border: 1px solid #eee;
}

.feature-style-top .feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--theme-primary-color);
}

.feature-style-top:hover {
    background: #fff;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
}


.features-3 {
    padding: 70px 0px 100px;
    background: #040B29;
}

.features-3-li .icon {
    width: 20px !important;
    transform: translateY(5px);
    margin-right: 6px;
}



/*------------------------
Video Section
------------------------*/
.video-section {
    background: url(../images/home/enterprise-11.html) no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0px 100px;
    z-index: 1;
}

.video-section:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #120F2D;
    opacity: .6;
}

.video-section .video-content {
    text-align: center;
}

.video-section .video-content .video-icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: var(--theme-primary-color);
    color: #fff;
    display: inline-block;
    font-size: 30px;
    line-height: 105px;
    box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.12);
}

.video-section .video-content .video-icon:hover {
    background: var(--theme-secondary-color);
    color: #fff;
}

.video-section .video-content h2 {
    color: #fff;
    margin-top: 40px;
}

/*---------------------
Process
--------------------*/
.work-process-section {
    padding: 0px 0px 70px;
}

.step-item {
    margin-bottom: 30px;
    border-radius: 10px;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 15px;
    margin-right: 15px;
    border-radius: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    float: left;
}

.step-item .step-text {
    overflow: hidden;
}

.step-item h5 {
    margin-bottom: 10px;
}

.step-item p {
    margin-bottom: 0px;
}

.step-wrapper {
    clear: both;
}

/*-------------------
CTa Inner
-----------------------------*/
.cta-inner-wrapper {
    background: #F4F9FF;
    padding: 30px 40px;
}

/*----------------------
Testiomonial
------------------------*/
.testimonial {
    position: relative;
    z-index: 1;
}

.testimonial:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50%;
    background: #F4F9FF;
    z-index: -1;
}

.testimonial-item {
    padding: 10px;
}

.testimonial-inner {
    padding: 2rem 2rem;
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07);
    background: #fff;
    border-radius: .4rem;
    position: relative;
}

.testimonial-inner .quote-icon {
    font-size: 60px;
    right: 20px;
    top: 20px;
    color: var(--theme-secondary-color);
    opacity: .5;
}

.testimonial-inner .client-img {
    width: 60px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-inner .testimonial-author h4 {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 18px;
    color: #343f52;
}

.testimonial-inner .meta {
    text-transform: uppercase;
    letter-spacing: .02rem;
    font-size: .7rem;
    font-weight: 600;
    color: #aab0bc;
}

.testimonial-inner .testimonial-text {
    margin-top: 10px;
    color: #000;
}

.testimonial-inner .testimonial-text h5 {
    margin-bottom: 10px;
}

.testimonial-2 {
    position: relative;
    z-index: 1;
}

.testimonial-2:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 45%;
    height: 65%;
    background: #F4F9FF;
    z-index: -1;
}

.testimonial-2 .testimonial-inner {
    border: 2px solid #DCF1FD;
    box-shadow: none;
}

.testimonial-2 .owl-nav.disabled+ {
    margin-top: 40px;
}

.testimonials-slides-2 {
    position: relative;
}

.testimonials-slides-2:after {
    position: absolute;
    content: "";
    right: -37px;
    top: -20px;
    background: url("../images/bg/about-dots.html") no-repeat;
    background-size: cover;
    width: 25%;
    height: 43%;
    z-index: -1;
    opacity: .5;
}

.testimonials-3:after {
    width: 25px;
    height: 20px;
    position: absolute;
    content: "";
    right: 20px;
    top: 20px;
    background: url("../images/home/about-2.html") no-repeat;
    background-size: cover;
}


.testimonials-4 .testimonial-title {
    line-height: 36px;
    position: relative;
}

.testimonials-4 .testimonial-title:after {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--theme-primary-color);
    transition: all .4s ease;
    position: absolute;
    left: 0;
    bottom: -10px;
}





/*----------------------
Team Style 
------------------------*/
.team-item {
    border-radius: 5px;
    transition: all .4s ease;
    border: 1px solid #DCF1FD;
}

.team-item .team-img {
    padding: 0px 20px 20px;
    position: relative;
}

.team-item .team-img img {
    border-radius: 5px;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    transition: all .4s ease;
}

.team-item .team-content {
    padding: 0px 30px 30px;
}

.team-item .team-info p {
    font-size: 14px;
}

.team-item .team-socials {
    position: absolute;
    right: 0px;
    bottom: 20px;
    background: var(--theme-primary-color);
    padding: 2px 20px;
    border-radius: 5px 0px 0px 5px;
}

.team-item .team-socials a {
    color: #fff;
    font-size: 14px;
    opacity: .8;
}

.team-item .team-socials a:hover {
    opacity: 1;
}

.team-item .course-meta {
    margin-bottom: 0px;
}

.team-item:hover {
    background: #fff;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
}

/*------------------------
CTA
---------------------------*/
.cta {
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}

.cta .cta-inner-section {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(29, 23, 77, 0.06);
    background: url("../images/bg/banner-image-03.html") 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta .cta-inner-section .info-box {
    padding: 80px 80px;
    background: rgba(18, 15, 45, 0.97);
}

.cta .cta-inner-section .info-box .subtitle {
    color: #fff;
}

.cta .cta-inner-section .info-box h2 {
    color: #fff;
}

.cta .cta-inner-section .info-box.style-1 {
    background: #291b6d;
}

/*---------------------
Team style 2
---------------------------*/
.team-item-2 {
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
}

.team-item-2 .team-img {
    padding-top: 20px;
}

.team-item-2 .team-img img {
    border-radius: 5px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.about-features .feature-item {
    margin-bottom: 30px;
    padding-right: 40px;
}

.about-features .feature-item:last-child {
    margin-bottom: 0px;
}

/*------------------------
Cta -1
-------------------------*/
.cta-inner2 {
    background: url("../images/bg/hero_area_image.html") no-repeat center center;
    background-size: cover;
    padding: 80px 70px;
    position: relative;
    z-index: 1;
}

.cta-inner2:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(90deg, #1a0056 0%, #3d64ff 100%);
    opacity: .1;
    z-index: -1;
}

.cta-inner2 .cta-content .subheading {
    color: #fff;
}

.cta-inner2 .cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-inner2 .cta-content p {
    color: #fff;
    margin-bottom: 30px;
    opacity: .7;
}

/*------------------------
Subscribe FOrm
-------------------------*/
.subscribe-form {
    position: relative;
}

.subscribe-form .form-control {
    height: 60px;
    border-radius: 4px;
    border: 1px solid transparent;
    padding-right: 180px;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
    padding-left: 25px;
}

.subscribe-form input {
    position: relative;
}

.subscribe-form .btn {
    position: absolute;
    right: 4px;
    top: 3px;
    line-height: 1.3;
}

/*------------------------
List Item Style
-------------------------*/
.list-item {
    margin-right: 50px;
}

.list-item i {
    margin-right: 10px;
    float: left;
    margin-top: 7px;
    margin-right: 20px;
}

.list-item li {
    margin-bottom: 20px;
}

.list-item li:last-child {
    margin-bottom: 0px;
}

.list-item h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    overflow: hidden;
}

/*------------------------
Team 4
-------------------------*/
.team-item-4 {
    border: 1px solid #eee;
    background: transparent;
    text-align: center;
}

.team-item-4 .team-img {
    margin-top: -50px;
    padding: 20px 20px 10px 20px;
    overflow: hidden;
}

.team-item-4 .team-img img {
    border-radius: 100%;
}

.team-item-4 .team-content {
    padding: 0px 30px 15px 30px;
}

.team-item-4 .team-socials {
    right: -150px;
    transition: all .4s ease;
    bottom: 50px;
}

.team-item-4 .course-meta {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.team-item-4:hover {
    border-color: #fff;
}

.team-item-4:hover .team-socials {
    right: 0px;
}

/*------------------------
Counter 4
-------------------------*/
.counter-section4 {
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.counter-inner {
    background: #2A3E61;
    border-radius: 10px;
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}

.counter-inner:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url("../images/bg/illustration-bg.html") 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .9;
    z-index: -1;
}

.counter-item {
    text-align: center;
}

.counter-item .count {
    color: #fff;
}

.counter-item .count span {
    font-size: 42px;
}

.counter-item .counter {
    color: #fff;
}

.counter-item p {
    color: #fff;
    margin-bottom: 0px;
}

.testimonial .owl-theme .owl-nav.disabled+ {
    margin-top: 40px;
}

.testimonial-4 {
    padding-top: 190px;
}

.cta-inner4 {
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 40px;
    border-radius: 10px;
}

/*----------------------
Contact Form
--------------------------*/
.contact-info-wrapper {
    background: #fff;
    padding: 40px;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
}

.contact-info-wrapper h3 {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.contact-info-wrapper h3 span {
    display: block;
}

.contact-info-wrapper .contact-item {
    padding: 15px 0px;
    border-bottom: 1px solid #eee;
    display: flex;
}

.contact-info-wrapper .contact-item:last-child {
    padding-bottom: 0px;
    border: 0px;
}

.contact-info-wrapper .contact-item i {
    margin-right: 15px;
    color: #333;
    margin-top: 5px;
}

.contact-info-wrapper .contact-item h5 {
    font-weight: 400;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    font-family: var(--theme-secondary-font);
}

.contact__form .form-group {
    margin-bottom: 20px;
}

.contact__form textarea.form-control {
    padding-top: 20px;
}

/*===========================
Pricing
===========================*/
.pricing {
    position: relative;
    background: #fff;
    z-index: 2;
}

.pricing:after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 40%;
    background: url("../images/bg/shape-bg-1.html") no-repeat;
    z-index: -1;
}

.pricing-item {
    border: 2px solid #F4F7FC;
    padding: 50px 60px;
    position: relative;
    transition: all .4s ease;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.pricing-item:before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 2px;
    background: #007aff;
    transition: all .4s ease;
}

.pricing-item .pricing-header {
    margin-bottom: 20px;
}

.pricing-item .pricing-header p {
    transition: all .4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #F14D5D;
}

.pricing-item .pricing-header .badge {
    background: #007aff;
    font-weight: 600;
    padding: 6px 10px;
    transition: all .4s ease;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
}

.pricing-item .divider {
    width: 20%;
    background: #007aff;
    height: 2px;
}

.pricing-item .price {
    padding-bottom: 30px;
}

.pricing-item .price h2 {
    font-size: 50px;
    letter-spacing: -.5px;
    transition: all .4s ease;
}

.pricing-item .price small {
    font-size: 16px;
    font-weight: 400;
}

.pricing-item .btn {
    margin: 30px 0px;
}

.pricing-item:hover {
    background: #fff;
    box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
    border-color: #fff;
}

.pricing-item:hover:before {
    width: 100%;
}

.pricing-item:hover h2 {
    color: #007aff;
}

.pricing-features ul li {
    margin-bottom: 10px;
    color: #000;
}

.pricing-features ul li i {
    margin-right: 10px;
    color: #007aff;
}

.pricing-tab .nav-link {
    font-size: 14px;
    line-height: 1.33;
    color: #bbbbbb;
    font-weight: 400;
    border: solid 1px transparent;
    text-transform: capitalize;
}

.pricing-tab .nav-link.active,
.pricing-tab .show>.nav-link {
    color: #273444;
    font-weight: 500;
    box-shadow: 0 2px 20px 0 rgba(97, 97, 97, 0.07);
    border-color: #007aff;
    background-color: #007aff;
    color: #fff;
}

/*------------------------
Portfolio
--------------------*/
.portfolio {
    position: relative;
}

.portfolio:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 70%;
    background: #F8F8F8;
    z-index: -1;
}

.portfolio-single {
    border: 8px solid #fff;
    margin-bottom: 25px;
}

.portfolio-single .portfolio-img {
    position: relative;
    z-index: 1;
    transition: all .5s ease;
    overflow: hidden;
}

.portfolio-single .portfolio-img img {
    transition: all .4s ease;
}

.portfolio-single .portfolio-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio-single .portfolio-img:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #007aff;
    background: rgba(255, 83, 105, 0.9);
    opacity: 0;
    transition: all .5s ease;
}

.portfolio-single .portfolio-img .overlay-content {
    position: absolute;
    bottom: 0px;
    left: 50px;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transition: all .5s ease;
}

.portfolio-single .portfolio-img .overlay-content h4 {
    color: #fff;
    text-transform: capitalize;
}

.portfolio-single .portfolio-img .overlay-content h4 a {
    position: relative;
    padding-bottom: 10px;
}

.portfolio-single .portfolio-img .overlay-content h4 a::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 20%;
    height: 1px;
    background: #fff;
    transition: all .4s ease;
}

.portfolio-single .portfolio-img .overlay-content h4 a:hover {
    color: #fff;
}

.portfolio-single .portfolio-img .overlay-content h4 a:hover:before {
    width: 100%;
}

.portfolio-single .portfolio-img .overlay-content span {
    color: #fff;
    text-transform: capitalize;
}

.portfolio-single .portfolio-img .overlay-icon {
    position: absolute;
    right: 0px;
    top: 30px;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    transition: all .5s ease;
}

.portfolio-single .portfolio-img .overlay-icon a {
    width: 50px;
    height: 50px;
    background: white;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    line-height: 50px;
}

.portfolio-single .portfolio-img:hover:after {
    opacity: 1;
}

.portfolio-single .portfolio-img:hover .overlay-content {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 1;
}

.portfolio-single .portfolio-img:hover .overlay-icon {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 1;
}

/*-----------------------
portflio filter
-------------------------------*/
.portfolio-filter {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 50px;
    padding-bottom: 15px;
    text-align: right;
}

.portfolio-filter li {
    display: inline-block;
    margin: 0px 5px;
}

.portfolio-filter li.active a {
    color: #363ace;
    border-color: #363ace;
}

.portfolio-filter li a {
    letter-spacing: 2px;
    color: #000;
    border-bottom: 1px solid transparent;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
}

.portfolio-gallery .portfolio-single {
    border: 0px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-gallery .portfolio-single img {
    border-radius: 4px;
}

.portfolio-gallery .portfolio-single .portfolio-img img {
    transition: all .4s ease;
}

.portfolio-gallery .portfolio-single .portfolio-img::after {
    border-radius: 4px;
    background: rgba(54, 58, 206, 0.8);
}

.portfolio-gallery .portfolio-single .portfolio-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio-gallery .portfolio-single .overlay-icon a {
    color: #363ace;
}

.portfolio-gallery .portfolio-single .overlay-icon a:hover {
    background: #363ace;
    color: #fff;
}

.portfolio-gallery .portfolio-single .overlay-content a:hover {
    color: #20ad96;
}

.portfolio-single.portfolio-layout-2 {
    border: 0px;
}

.portfolio-single.portfolio-layout-2 .portfolio-img .overlay-content {
    left: calc(100% - 90%);
}

.portfolio-single.portfolio-layout-2 .overlay-content a {
    position: relative;
}

.portfolio-single.portfolio-layout-2 .overlay-content a::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 10%;
    height: 1px;
    background: #fff;
    transition: all .4s ease;
}

.portfolio-single.portfolio-layout-2 .overlay-content a:hover {
    color: #fff;
}

.portfolio-single.portfolio-layout-2 .overlay-content a:hover:before {
    width: 100%;
}

.course-grid {
    margin-bottom: 30px;
}

.course-grid .course-title {
    font-size: 24px;
}

.course-grid .course-price {
    font-size: 24px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    color: var(--theme-secondary-color);
}

.course-grid .course-thumb img {
    width: 100%;
}

.course-meta {
    margin-bottom: 10px;
}

.course-meta span {
    margin-right: 15px;
    font-size: 14px;
}

.course-meta span:last-child {
    margin-right: 0px;
}

.course-meta i {
    margin-right: 5px;
    /*color: var(--theme-secondary-color);*/
}

.rating {
    font-size: 14px;
}

.rating i {
    color: #FFC78B;
}

.tooltip-style {
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 5px;
}

.tooltip-style .course-title {
    font-size: 20px;
    line-height: 30px;
}

.tooltip-style .course-content {
    padding: 20px 20px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
}

.tooltip-style:hover .course-hover-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tooltip-style .course-thumb {
    position: relative;
}

.tooltip-style .course-price {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: var(--theme-primary-color);
    padding: 12px 15px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: all .4s ease;
}

.tooltip-style .rating {
    font-size: 13px;
}

.tooltip-style .rating span {
    margin-left: 5px;
}

.course-hover-content {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    padding: 30px 25px 25px 30px;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.course-hover-content .price {
    color: var(--theme-primary-color);
    font-weight: 700;
    font-size: 30px;
}

.hover-shadow {
    transition: all .4s ease;
}

.hover-shadow:hover {
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
}

.course-style-3 {
    border: 1px solid #F1F3F8;
    border-radius: 7px;
    transition: all .4s ease;
}

.course-style-3 .course-content {
    padding: 10px 20px 20px 25px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
}

.course-style-3 .course-thumb {
    padding: 20px;
    position: relative;
}

.course-style-3 .course-thumb img {
    width: 100%;
    border-radius: 4px;
}

.course-style-3 .category {
    background: var(--theme-primary-color);
    padding: 8px 20px;
    color: #fff;
    border-radius: 7px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.course-style-3 .course-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.course-style-3:hover {
    border-color: transparent;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.course-style-3 .course-price {
    font-size: 24px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    color: var(--theme-secondary-color);
}

.course-style-3 .course-price span {
    font-size: 18px;
    align-self: flex-end;
}

.course-style-4 {
    border: 1px solid #F1F3F8;
    border-radius: 4px;
    padding: 0px 30px 10px 30px;
    transition: all .4s ease;
}

.course-style-4 .course-thumb {
    margin-top: -60px;
}

.course-style-4 .course-content {
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    padding-top: 20px;
}

.course-style-4 .course-thumb {
    border-radius: 4px;
    overflow: hidden;
}

.course-style-4 .course-title {
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 30px;
    font-size: 20px;
}

.course-style-4 .course-price {
    position: absolute;
    top: -20px;
    right: 21px;
    background: var(--theme-primary-color);
    padding: 11px 18px;
    color: #fff;
    border-radius: 3px;
    font-size: 17px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.course-style-4 .course-meta {
    color: #14133b;
}

.course-style-4 .course-meta span {
    margin-right: 6px;
}

.course-style-4 .course-meta span i {
    color: #ddd;
}

.course-style-4 .rating {
    font-size: 12px;
}

.course-style-4:hover {
    border-color: transparent;
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.course-style-4 .author img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin-right: 5px;
}

.course-style-4 .author a {
    color: #000;
}

.course-style-4 .author a:hover {
    color: var(--theme-secondary-color);
}


.solution-box .course-thumb {
    width: 320px;
}

.solution-box .label p {
    font-size: 13px;
    color: #9AA6EC;
    border: 1px solid #9AA6EC;
    border-radius: 4px;
    padding: 0 6px;
    margin: 10px 10px;
}




.vip-course-box .course-thumb {
    width: 380px;
    position: relative;
}

.vip-course-box .course-thumb .recommend-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
}

.vip-course-box .vip-color {
    color: #D61F29;
}

.vip-course-box .label p {
    font-size: 13px;
    color: #B7B8B9;
    border: 1px solid #DCDDDE;
    border-radius: 4px;
    padding: 0 6px;
    margin-right: 10px;
}

.vip-course-box .btn {
    background: #D61F29;
    color: #ffffff;
    font-weight: normal;
}

.vip-course-box .course-list p {
    padding-left: 30px;
    position: relative;
}

.vip-course-box .course-list p:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #838485;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.vip-course-box .progress {
    height: 0.4rem;
}

.vip-course-box .time {
    height: 22px;
    line-height: 22px;
}

.author img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin-right: 5px;
}

.author a {
    color: #000;
}

.author a:hover {
    color: var(--theme-secondary-color);
}

.course-style-5 {
    transition: all .4s ease;
    /*box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);*/
    border: 1px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.course-style-5:hover {
    border-color: var(--theme-primary-color);
}


.course-style-5 .course-thumb {
    position: relative;
    overflow: hidden;
}

.course-style-5 .course-thumb .cover_img {
    transition: all .4s ease;
    width: 100%;
}

.course-style-5 .course-header {
    position: relative;
}

.course-style-5 .course-price {
    position: absolute;
    bottom: 0px;
    left: -130px;
    background: var(--theme-primary-color);
    padding: 12px 15px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: all .4s ease;
}

.course-style-5 .course-content {
    padding: 20px 10px;
}

.course-style-5 .course-content h4 {
    height: 56px;
    font-size: 16px;
    line-height: 24px;
}

.course-style-5:hover {
    background: #fff;
}

.course-style-5:hover .course-thumb .cover_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.course-style-5:hover .course-price {
    left: 0px;
}



/*.course-style-6*/
.course-style-6 {
    display: inline-block;
    transition: all .4s ease;
    /*box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);*/
    border-radius: 4px;
    background: #ffffff;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.course-style-6 .course-header {
    position: relative;
}

.course-style-6 .course-thumb {
    position: relative;
    overflow: hidden;
}

.course-style-6 .course-text {
    width: 50%;
    position: absolute;
    top: 25px;
    left: 20px;
}

.course-style-6 .course-text .course-title span {
    display: inline-block;
    padding: 4px 8px 3px;
    border: 1px solid #ffffff;
    font-size: 12px;
    border-radius: 50rem;
    transform: translateY(-3px);
    opacity: 0.9;
}

.course-style-6 .course-text .hr {
    width: 2em;
    height: 3px;
    background: #ffffff;
}

.course-style-6 .course-text p {
    opacity: 0.7;
}


.course-style-6 .course-thumb img {
    transition: all .4s ease;
    width: 100%;
}

.course-style-6 .course-content {
    padding: 20px 20px;
}

.course-style-6:hover .course-content p {
    color: var(--theme-primary-color);
    transition: all .4s ease;
}

.course-style-6 .img-icon {
    width: 52px;
    height: 52px;
}




.meta-style-1 span {
    position: relative;
    margin-right: 18px;
}

.meta-style-1 span:after {
    position: absolute;
    content: "";
    right: -15px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 6px;
    height: 6px;
    background: var(--theme-border-color);
    border-radius: 100%;
}

.meta-style-1 span:last-child:after {
    display: none;
}

.course-footer span {
    font-size: 14px;
    /*font-weight: 600;*/
}

.rounded-btn {
    width: 40px;
    height: 40px;
    text-align: center;
    background: rgba(121, 150, 178, 0.1);
    color: rgba(52, 52, 65, 0.28);
    line-height: 40px;
    border-radius: 100%;
}

.rounded-btn:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.single-course {
    transition: all .4s ease;
    margin-bottom: 40px;
}

.single-course .course-thumb {
    width: 190px;
    height: 190px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
    transition: all .4s ease;
}

.single-course .course-thumb .category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme-primary-color);
    padding: 8px 20px;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: .5px;
}

.single-course.style-1 {
    border: 1px solid #eee;
    padding: 20px;
}

.single-course.style-1 .course-thumb {
    border-radius: 100%;
    border: 5px solid #fff;
}

.single-course.style-2 .course-thumb {
    background-size: cover;
    height: 100%;
    width: 100%;
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: center;
}

.single-course.style-2 .course-content {
    padding: 30px;
}

.single-course.style-2 .course-price {
    font-size: 24px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    color: var(--theme-secondary-color);
}

.single-course .course-content {
    padding-left: 45px;
    padding-right: 20px;
}

.single-course .course-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 10px;
}

.single-course .course-meta {
    margin-bottom: 0px;
}

.single-course .course-meta .author {
    margin-right: 10px;
}

.single-course:hover {
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
    background: #fff;
    border-color: #fff;
}

.single-course:hover .course-thumb {
    border-color: #faf8f6;
}

.single-course .course-meta {
    margin-top: 20px;
}

.single-course .course-meta span {
    margin-right: 18px;
}

.single-course .author img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin-right: 5px;
}

.single-course .author a {
    color: #000;
}

.single-course .author a:hover {
    color: var(--theme-secondary-color);
}

/*-----------------------------
Course category
-------------------------------*/
.single-course-category {
    border: 1px solid var(--theme-fourth-color);
    padding: 40px 20px 30px 20px;
    text-align: center;
    transition: all .4s ease;
    border-radius: 10px;
    position: relative;
}

.single-course-category:after {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: var(--theme-primary-color) transparent transparent transparent;
    content: '';
    visibility: hidden;
    opacity: 0;
    border-radius: 10px 0px 0px 0px;
    transition: all 0.4s ease;
}

.single-course-category.style-1 .course-cat-icon {
    transition: all .4s ease;
    margin: 0 auto 30px;
}

.single-course-category.style-1 .course-cat-icon img {
    width: 45px;
}

.single-course-category.style-1 .course-cat-title {
    margin-bottom: 10px;
}

.single-course-category.style-1:hover .course-cat-icon {
    background: transparent;
}

.single-course-category.style-2:hover .course-cat-icon {
    background: transparent;
}

.single-course-category.style-3 {
    border-color: transparent;
}

.single-course-category.style-3 .course-cat-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    background: #fff;
    transition: all .4s ease;
    margin: 0 auto 20px;
}

.single-course-category.style-3 .course-cat-icon img {
    width: 45px;
    display: inline-block;
}

.single-course-category.style-3 .course-cat-title {
    margin-bottom: 10px;
    color: #fff;
}

.single-course-category .course-cat-title {
    font-size: 20px;
    text-transform: capitalize;
}

.single-course-category .course-count {
    border: 1px solid #F1F3F8;
    font-weight: 500;
    color: var(--theme-color-text);
    text-transform: capitalize;
    transition: all .4s ease;
    display: inline-block;
    padding: 1px 18px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.single-course-category.active-cat {
    border-color: var(--theme-primary-color);
}

.single-course-category.active-cat:after {
    opacity: 1;
    visibility: visible;
}

.single-course-category:hover {
    box-shadow: 0 14px 59px rgba(0, 0, 0, 0.12);
    background: #fff;
    border-color: var(--theme-primary-color);
}

.single-course-category:hover:after {
    left: 0px;
    top: 0px;
    opacity: 1;
    visibility: visible;
}

.single-course-category:hover .course-count {
    color: var(--theme-secondary-color);
}

.single-course-category:hover .course-cat-icon {
    background: #DCF1FD;
}

.single-course-category:hover .course-cat-title {
    color: #222;
}

.single-course-category.style-2 {
    text-align: left;
    padding: 25px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 30px rgba(29, 23, 77, 0.06);
    margin-bottom: 20px;
}

.single-course-category.style-2 .course-cat-icon {
    margin-right: 15px;
    margin-bottom: 0px;
}

.single-course-category.style-2 .course-cat-icon img {
    width: 40px;
}

.single-course-category.style-2 .course-cat-title {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 18px;
}

.course-category-3 {
    position: relative;
    z-index: 1;
    background: #f5f5f5;
}

/*---------------------
Course style -1
--------------------*/
.course-style-1 {
    border: 1px solid #F0F3F8;
    border-radius: 4px;
    margin-bottom: 25px;
    /*padding: 10px;*/
}

.course-style-1 .course-content {
    padding: 20px;
}

.course-style-1 .course-content .price {
    color: #fff;
}

.course-style-1 .course-title {
    margin: 20px 0px;
}

.course-style-1 .course-meta {
    margin-bottom: 0px;
}

.course-style-1 .category {
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 4px;
}

.course-style-1 .course-content h4 {
    height: 56px;
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
}

.course-style-1 .course-content .progress {
    height: 0.4rem;
}

.course-style-1 .course-content .btn {
    width: 100%;
    border: 1px solid #F0F3F8;
    color: #999999;
    padding: 10px 0;
}

.course-style-1 .course-content .btn.select {
    border: 1px solid #41D25D;
    color: #41D25D;
}


/*---------------------
course filter
--------------------------*/

.course-filter-title {
    margin-left: -10px;
}


.course-filter {
    margin-bottom: 30px;
}

.course-filter li {
    display: inline-block;
    padding: 0px 10px;
}

.course-filter li.active a:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: var(--theme-primary-color);
    transition: all .4s ease;
}

.course-filter li a {
    color: var(--theme-content-color);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    border-radius: 35px;
    line-height: 1;
    position: relative;
    padding-bottom: 10px;
}

.course-filter li a:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 2px;
    background: var(--theme-primary-color);
    transition: all .4s ease;
}

.course-filter li a:hover:before {
    width: 100%;
}

.course-filter.style-1 {
    margin-bottom: 0;
}

.course-filter.style-1 li {
    padding: 0 2px;
    margin-bottom: 10px;
}

.course-filter.style-1 li a {
    padding: 4px 12px;
    font-size: 14px;
    color: var(--theme-text-color);
}


.course-filter.style-1 li a:before {
    display: none;
}

.course-filter.style-1 li.active a {
    color: #ffffff;
    background: var(--theme-primary-color);
}


.position-course-filter {
    width: 100%;
    background: #fff;
    box-shadow: 0px 16px 32px 0px rgb(196 203 255 / 30%);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

.position-course-filter .filter-wrap {
    padding: 20px 0;
    overflow-x: auto;
}

.position-course-filter .course-filter {
    margin-bottom: 0;
    white-space: nowrap;
}

.position-course-filter li {
    user-select: none;
}



.single-course-category.bg-shade .course-count {
    border-color: #fff;
    background: #fff;
}

.single-course-category.bg-shade:hover .course-count {
    border-color: #F1F3F8;
    color: var(--theme-secondary-color);
}


.position-nav-map {
    width: 160px;
    background: #ffffff;
    position: fixed;
    top: 160px;
    left: 0;
    z-index: 10;
    overflow: hidden;
}

.position-nav-title {
    padding: 10px 15px;
    color: #ffffff;
    background: #FC963F;
}

.position-nav li {
    padding: 8px 15px 6px;
    border-bottom: 1px solid #efefef;
}

.position-nav li:last-child {
    border: none;
}

.position-nav li a {
    color: var(--theme-text-color);
    font-size: 14px;
}

.position-nav li.active a {
    color: var(--theme-primary-color);
}




/*========================
Course Single Page
=============================*/
/*========================
Content tab
=============================*/
.theme-course-content .learn-press-nav-tabs .course-nav a {
    color: #ababab;
    font-size: 18px;
    font-weight: 700;
    transition: all .4s ease 0s;
    border: 0px;
    border-bottom: 2px solid transparent;
    padding: 15px 20px;
}

.theme-course-content .learn-press-nav-tabs .course-nav.active a {
    color: #000;
    transition: all .4s ease 0s;
}

.theme-course-content .learn-press-nav-tabs .course-nav.active:hover a {
    color: var(--theme-primary-color);
}

.theme-course-content .learn-press-nav-tabs .nav-tabs {
    border-bottom: 2px solid transparent;
    background: #F8F9F8;
    transition: all .4s ease 0s;
    margin-bottom: 40px;
    border-radius: 5px;
}

.theme-course-content .nav-tabs .nav-link {
    border: 2px solid transparent;
}

.theme-course-content .learn-press-nav-tabs .course-nav.active::after,
.theme-course-content .learn-press-nav-tabs .course-nav:hover::after {
    background: var(--theme-primary-color);
    height: 2px;
    bottom: -2px;
}

.theme-course-content .nav-tabs .nav-link.active,
.theme-course-content .nav-tabs .nav-item.show .nav-link {
    color: #222;
    border: 0px;
    background: #F8F9F8;
    border-bottom: 2px solid var(--theme-primary-color);
}

/*==========================
Course Topics
================================*/
.theme-course-curriculum .curriculum-sections .section {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 20px;
    background: transparent;
}

.theme-course-curriculum .section-content .course-item {
    position: relative;
    font-size: 14px;
    transition: padding-left linear .15s;
    background: #fff;
    margin: 0;
}

.theme-course-curriculum .section-content .course-item .section-item-link {
    border-bottom: none;
    display: table;
    box-shadow: none;
    outline: 0;
    width: 100%;
    line-height: 1.5;
    font-weight: 700;
    transition: all .4s ease 0s;
    padding: 7px 40px;
}

.theme-course-curriculum .section-content .course-item .section-item-link:before {
    font-family: "Font Awesome 5 free";
    font-size: 14px;
    left: 0;
    display: table-cell;
    width: 20px;
    padding: 10px 0;
    color: dimgray;
    transition: all .4s ease 0s;
}

.theme-course-curriculum .section-content .course-item .section-item-link .item-name {
    color: #222;
    transition: all .4s ease 0s;
    display: table-cell;
    vertical-align: middle;
    padding: 10px 10px;
}

.theme-course-curriculum .section-content .course-item .section-item-link .course-item-meta {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding: 10px 0;
    text-align: right;
}

.theme-course-curriculum .section-content .course-item .section-item-link .course-item-meta .item-meta {
    height: 24px;
    line-height: 24px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    background: #000;
}

.theme-course-curriculum .section-content .course-item .section-item-link .course-item-meta .item-meta.duration {
    background: var(--theme-secondary-color);
}

.theme-course-curriculum .section-content .course-item .section-item-link .course-item-meta .course-item-status {
    color: #ddd;
    margin-left: 5px;
    display: none;
    border-radius: 50%;
    box-sizing: border-box;
}

.theme-course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_lesson .section-item-link::before {
    content: "\f15c";
}

.theme-course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_quiz .section-item-link::before {
    content: "\f017";
}

.theme-course-curriculum ul.curriculum-sections .section-content .course-item:nth-child(2n+1) a {
    background-color: #f8f8f8;
}

/*==========================
Popular course sidebar widget
================================*/
.course-latest {
    /*margin-top: 50px;*/
}

.course-latest li {
    padding-top: 20px;
}

.course-latest h4 {
    margin-bottom: 10px;
}

.course-latest .widget-post-body h6 {
    margin-bottom: 10px;
}

.course-latest h5 {
    color: #007aff;
}

/*========================
Course Sidebar
=============================*/
.course-sidebar {
    background: #fff;
}

.course-sidebar .course-widget {
    box-shadow: 0 30px 50px 0 rgba(51, 51, 51, 0.08);
    padding: 30px 35px 30px;
    border: 1px solid rgba(1, 90, 189, 0.1);
}

.course-sidebar .course-widget .course-sidebar-list {
    margin: 20px 0px;
}

.course-sidebar .course-widget .course-sidebar-list li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.course-sidebar .course-widget .course-sidebar-list li:last-child {
    border: 0px;
}

.course-sidebar .course-widget .course-sidebar-list li span {
    text-transform: capitalize;
    color: #000;
}

.course-sidebar .course-widget .course-sidebar-list li span i {
    color: #696969;
    margin-right: 10px;
}

.course-sidebar .course-widget .course-sidebar-list li .main-course-price span {
    font-size: 60px;
    color: var(--theme-primary-color);
}

.course-sidebar .course-widget .buy-btn {
    text-align: center;
}

.course-sidebar .course-widget .buy-btn button {
    width: 100%;
    display: block;
}

.course-sidebar .price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-sidebar .price-header .course-price {
    font-size: 34px;
    line-height: 34px;
    color: var(--theme-primary-color);
    font-weight: 700;
}

.course-sidebar .price-header .course-price span {
    color: #777;
    font-weight: 600;
    margin-left: 6px;
    text-decoration: line-through;
    font-size: 24px;
    line-height: 24px;
}

.course-sidebar .price-header .course-price-badge {
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 0 10px;
    text-align: center;
    color: var(--theme-secondary-color);
    margin-left: 10px;
    background: #eee;
}

.course-sidebar .content-text .title {
    line-height: 28px;
    margin-bottom: 6px;
}

.course-sidebar .content-text p {
    line-height: 25px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------
Course Single Banner
-------------------------*/
.course-single-wrapper {
    padding: 60px 0px;
    background: #F4F5F8;
    margin-bottom: 40px;
}

.single-top-meta {
    margin-right: 20px;
}

.single-top-meta i {
    margin-right: 5px;
}

.theme-course-layout-1 .course-sidebar {
    position: relative;
    margin-top: -350px;
}

.single-course-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.course-popular li {
    /*clear: both;*/
    /*background: #F4F5F8;*/
    display: flex;
    flex-flow: row;
    align-items: center;
    padding: 20px 20px 27px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.widget-post-thumb {
    flex-shrink: 0;
    width: 120px;
    border-radius: 5px;
    margin-right: 15px;
    overflow: hidden;
    /*float: left;*/
}

.widget-post-body {
    overflow: hidden;
}

.widget-post-body h6 {
    height: 46px;
    line-height: 23px;
    text-transform: capitalize;
    font-size: 15px;
    margin-bottom: 4px !important;
}

.intructor-social-links a {
    color: #444;
    margin-right: 5px;
    font-size: 14px;
}

.intructor-social-links a:hover {
    color: var(--theme-primary-color);
}

.single-course-details h4 {
    margin-bottom: 20px;
}

.single-course-details ul li,
.single-course-details ol li {
    margin-bottom: 7px;
}

.single-course-details ul li i,
.single-course-details ol li i {
    margin-right: 10px;
}

.theme-course-layout-3 .courses-instructor {
    margin-top: 40px;
}

.theme-course-layout-3 .instructor-image {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
}

/*----------------------------------
Course header layout 3
------------------------*/
.course-header-wrapper {
    margin-bottom: 40px;
    background: #F8F8F8;
}

.course-single-header {
    padding: 35px 30px;
}

.course-single-header .course-title {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.inline-list li {
    display: inline-block;
}

.list-info li {
    margin-right: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.course-author {
    font-size: 14px;
    color: #000;
}

.course-author img {
    border-radius: 100%;
    margin-right: 15px;
    width: 30px;
    height: 30px;
}

.list-rating i {
    color: #f7c04d;
    font-size: 14px;
}

.course-meterial {
    margin-top: 40px;
}

.course-meterial-list li {
    padding: 5px 0;
}

.course-meterial-list li i {
    margin-right: 7px;
    color: var(--theme-secondary-color);
}

.course-meterial-list li:last-child {
    border: 0px;
}

.course-sidebar-3 {
    margin-top: -400px;
    position: relative;
    background: #fff;
    z-index: 3;
}

.course-sidebar-3 .price-header .course-price {
    color: var(--theme-secondary-color);
}

.course-sidebar-3 .course-widget {
    box-shadow: none;
    padding: 0px;
    border-radius: 5px;
}

.course-sidebar-details {
    padding: 10px 30px 30px;
}

.course-reviews-2 .course-single-review {
    border: 0px;
    padding: 0px;
    margin-bottom: 40px;
}

.course-thumb-wrap {
    position: relative;
}

.course-thumb-wrap .course-thumbnail {
    position: relative;
    border: 10px solid #fff;
}

.course-thumb-wrap .video_icon {
    position: absolute;
    background: var(--theme-primary-color);
    color: #fff;
    height: 90px;
    width: 90px;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 20px;
    line-height: 94px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: -50%;
    -moz-border-radius: -50%;
    -ms-border-radius: -50%;
    -o-border-radius: -50%;
}

.course-thumb-wrap .video_icon:hover {
    background: #ffffff;
    color: var(--theme-primary-color);
}

.page-header-2 {
    position: relative;
}

.page-header-2:before {
    position: absolute;
    content: "";
    right: 0px;
    top: 0px;
    width: 25%;
    height: 100%;
    background: #120F2D;
}

/*==================
Course page search
=====================*/
.course-top-wrap {
    margin-bottom: 50px;
}

.topbar-search {
    position: relative;
}

.topbar-search .form-control {
    height: 50px;
    border-radius: 30px;
    padding-left: 20px;
    background: #eef5f9;
    border-color: #eef5f9;
}

.topbar-search label {
    position: absolute;
    right: 20px;
    top: 11px;
}

/*==================
Course page Header
=====================*/
.course-page-header {
    padding: 90px 0px;
    background: #F4F5F8;
    position: relative;
    background: url("../images/bg/page-title.html");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.course-page-header:after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(3, 31, 66, 0.9);
    z-index: -1;
}

.course-page-header .title-block {
    text-align: center;
}

.course-page-header .title-block h1 {
    color: #fff;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.course-page-header .title-block ul li {
    position: relative;
    padding-right: 20px;
    color: #fff;
    display: inline-block;
}

.course-page-header .title-block ul li:after {
    position: absolute;
    content: "/";
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto 0px;
    font-size: 14px;
    margin-right: 3px;
}

.course-page-header .title-block ul li:last-child:after {
    display: none;
}

.course-page-header .title-block ul li a {
    font-weight: 600;
}

.page-header-2 .course-header-wrapper h1 {
    color: #fff;
}

.page-header-2 .course-header-wrapper p {
    color: #fff;
}

.page-header-2 .course-header-wrapper .course-header-meta {
    color: #fff;
}

.page-header-2 .course-header-wrapper .course-header-meta .course-author {
    color: #fff;
}

.page-header-3 h1 {
    color: #fff;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.page-header-3 ul li {
    position: relative;
    padding-right: 20px;
    color: #fff;
    display: inline-block;
}

.page-header-3 ul li:after {
    position: absolute;
    content: "/";
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto 0px;
    font-size: 14px;
    margin-right: 3px;
}

.page-header-3 ul li:last-child:after {
    display: none;
}

.page-header-3 ul li a {
    font-weight: 600;
}

.page-header-3 .course-author {
    color: #fff;
}

/*========================
Content tab
=============================*/
.tutori-course-content .learn-press-nav-tabs .course-nav a {
    /*color: #ababab;*/
    color: var(--theme-text-color);
    font-size: 16px;
    font-weight: 400;
    transition: all .4s ease 0s;
    border: 0px;
    border-bottom: 2px solid transparent;
    padding: 15px 20px;
}

.tutori-course-content .learn-press-nav-tabs .course-nav.active a {
    color: #000;
    transition: all .4s ease 0s;
}

.tutori-course-content .learn-press-nav-tabs .course-nav.active:hover a {
    color: var(--theme-primary-color);
}

.tutori-course-content .learn-press-nav-tabs .nav-tabs {
    transition: all .4s ease 0s;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.tutori-course-content .nav-tabs .nav-link {
    border: 2px solid transparent;
}

.tutori-course-content .learn-press-nav-tabs .course-nav.active::after,
.tutori-course-content .learn-press-nav-tabs .course-nav:hover::after {
    background: var(--theme-primary-color);
    height: 2px;
    bottom: -2px;
}

.tutori-course-content .nav-tabs .nav-link.active,
.tutori-course-content .nav-tabs .nav-item.show .nav-link {
    color: #222;
    border: 0px;
    border-bottom: 2px solid var(--theme-primary-color);
}

/*==========================
Course Topics
================================*/
.tutori-course-curriculum ul.curriculum-sections .section {
    border: 1px solid rgba(0, 0, 0, 0.125);
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link::before {
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    left: 0;
    display: table-cell;
    width: 20px;
    padding: 10px 0;
    color: dimgray;
    transition: all .4s ease 0s;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_lesson .section-item-link::before {
    content: "\f144";
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_quiz .section-item-link::before {
    content: "\f017";
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item:nth-child(2n+1) a {
    background-color: #f8f8f8;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_assignment .section-item-link::before {
    content: "\f15c";
}

/*==========================
Course Curriculam
==========================*/
.tutori-course-curriculum ul.curriculum-sections .section-header {
    padding: 10px 40px;
    display: table;
    width: 100%;
    box-sizing: border-box;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-meta {
    display: table-cell;
    white-space: nowrap;
    padding-left: 20px;
    text-align: right;
    font-size: 14px;
    vertical-align: middle;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress {
    display: inline-block;
    margin-right: 5px;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress .progress-bg {
    width: 100px;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-title {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 18px;
    padding: 10px 0;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-left {
    display: table-cell;
    vertical-align: top;
    cursor: pointer;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-desc,
.tutori-course-curriculum ul.curriculum-sections .section-header .section-title {
    margin: 0 0 10px 0;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-title {
    color: #000;
    text-transform: capitalize;
}

.tutori-course-curriculum ul.curriculum-sections .section-header .section-desc {
    font-weight: 400;
}

.tutori-course-curriculum ul.curriculum-sections .section-content {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item {
    position: relative;
    font-size: 14px;
    transition: padding-left linear .15s;
    background: #fff;
    margin: 0;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .item-icon {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 0px;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link {
    border-bottom: none;
    display: table;
    box-shadow: none;
    outline: 0;
    width: 100%;
    line-height: 1.5;
    transition: all .4s ease 0s;
    padding: 7px 40px;
    color: #7A7A7A;
    text-transform: capitalize;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link:hover .item-name {
    color: var(--theme-primary-color);
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link:hover:before {
    color: var(--theme-primary-color);
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .item-name {
    color: #7A7A7A;
    transition: all .4s ease 0s;
    display: table-cell;
    vertical-align: middle;
    padding: 10px 10px;
    font-size: 16px;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .course-item-meta {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding: 10px 0;
    text-align: right;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .course-item-meta .item-meta {
    height: 24px;
    line-height: 24px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 12px;
    color: var(--theme-primary-color);
    background: #f4ebe7;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .course-item-meta .item-meta.duration {
    background: rgba(1, 90, 189, 0.1);
    color: #000;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .course-item-meta .course-item.item-preview .course-item-status {
    background: var(--theme-primary-color);
    font-style: normal;
    border-radius: 3px;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .course-item-meta .course-item-status {
    color: #ddd;
    margin-left: 5px;
    display: none;
    border-radius: 50%;
    box-sizing: border-box;
}

.tutori-course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .course-item-meta .course-item.has-status .course-item-status {
    display: inline-block;
}

/*-------------------
Course Thumbnail
-------------------------*/
.course-thumbnail {
    margin-bottom: 20px;
}

.course-thumbnail img {
    width: 100%;
    border-radius: 5px;
}

/*-------------------
Instructor
-------------------------*/
.instructor-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.instructor-content h4 {
    text-transform: capitalize;
}

.user-social-links li {
    display: inline-block;
}

.user-social-links li a {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 15px;
    color: #221638;
    position: relative;
    border-radius: 2px;
    background-color: #e1e1e1;
    display: inline-block;
}

.user-social-links li a:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

/*========================
Course Review
==============================*/
.course-review-head {
    margin-bottom: 20px;
}

.course-single-review {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 40px;
}

.course-single-review .review-title {
    color: #666;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.course-single-review .user-image {
    float: left;
    margin-right: 40px;
}

.course-single-review .user-image img {
    border-radius: 100%;
    width: 70px;
    height: 70px;
}

.course-single-review .user-review-content {
    overflow: hidden;
}

.course-reviews-list li .user-name,
.course-reviews-list-shortcode li .user-name {
    text-transform: capitalize;
    margin: 0px !important;
    font-size: 20px;
}

.course-reviews-list li .review-title,
.course-reviews-list-shortcode li .review-title {
    font-style: normal !important;
}

.course-reviews-list li,
.course-reviews-list-shortcode li {
    margin-bottom: 20px;
}

#course-reviews {
    margin-top: 40px;
}



/*------------------------
 Blog Sidebar
----------------------------*/
.blog-sidebar {
    padding-left: 30px;
}

.blog-sidebar .widget {
    margin-bottom: 50px;
    margin-bottom: 30px;
    border: 1px dashed #eeeeee;
    padding: 30px;
    border-radius: 7px;
}

.blog-sidebar .widget-title {
    margin-bottom: 30px;
}

.widget-search .search-form {
    position: relative;
}

.widget-search .search-form .form-control {
    border: 2px solid transparent;
}

.widget-search .search-form .form-control:focus {
    border-color: var(--theme-primary-color);
}

.widget-search .search-form .search-submit {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    background: transparent;
    color: #000;
}

.single-latest-post {
    margin-bottom: 30px;
}

.single-latest-post:last-child {
    margin-bottom: 0px;
}

.widget-thumb {
    margin-right: 20px;
    float: left;
}

.widget-thumb img {
    width: 75px;
    height: 75px;
    border-radius: 6px;
}

.widget-content {
    overflow: hidden;
}

.widget-content h5 {
    margin-bottom: 3px;
}

.widget-content span {
    font-size: 14px;
    color: #979797;
    text-transform: capitalize;
}

.widget-content span i {
    margin-right: 4px;
}

.widget_categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #F4F5F8;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all .4s ease;
    text-transform: capitalize;
}

.widget_categories ul li a {
    color: #000;
}

.widget_categories ul li a:hover {
    color: var(--theme-primary-color);
}

.widget_categories ul li:hover {
    margin-left: 10px;
}

.widget_tag_cloud a {
    padding: 3px 20px;
    border: 1px solid #F4F5F8;
    background: transparent;
    display: inline-block;
    margin-bottom: 5px;
    color: #000;
    border-radius: 5px;
}

.widget_tag_cloud a:hover {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    color: #fff;
}

.blog-page-navigation .pagination {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
}

.blog-page-navigation .pagination li a,
.blog-page-navigation .pagination li span {
    height: 42px;
    width: 42px;
    margin-right: 8px;
    border: 1px solid #eef0f6;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
    /*color: var(--theme-text-color);*/
    color: var(--theme-content-color);
    font-size: 16px;
    border-radius: 5px;
    background: #ffffff;
}

.blog-page-navigation .pagination li span {
    color: var(--theme-text-color);
    cursor: not-allowed;
}

.blog-page-navigation .pagination li a:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.blog-page-navigation .pagination li.active span {
    background: var(--theme-primary-color);
    color: #fff;
}

.blog-page-navigation .pagination li.pagination-arrow a {
    width: 90px;
    font-size: 13px;
}


/*---------------------
Single Blog POSt
--------------------------*/
.post-single .post-thumb {
    margin-bottom: 30px;
}

.single-post-content .post-title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
}

.single-post-content .post-meta {
    margin-bottom: 15px;
}

.single-post-content .post-meta span {
    color: #647589;
    margin-right: 15px;
    text-transform: capitalize;
}

.single-post-content .post-meta span i {
    margin-right: 8px;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content .inner-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-post-content blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 30px 40px 30px 50px;
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-style: italic;
    color: #000000;
    line-height: 1.4;
    border-left: 5px solid var(--theme-secondary-color);
}

.single-post-content blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    position: absolute;
    right: 30px;
    bottom: 30px;
    line-height: 1;
    font-size: 80px;
    color: #ebebeb;
    z-index: -1;
}

.single-post-content blockquote cite {
    font-size: 16px;
    display: block;
    margin-top: 20px;
    color: var(--theme-secondary-color);
}

.single-post-content img {
    border-radius: 5px;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 30px;
}

.single-post-content ol {
    list-style-type: disc;
    padding-left: 20px;
}

.single-post-content ul li {
    position: relative;
    padding-left: 25px;
}

.single-post-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 2px;
    font-size: 14px;
}

.blog-footer-meta {
    padding: 30px 0px;
    border-top: 1px solid #eee;
    margin-top: 70px;
}

.article-share h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-right: 10px;
}

.article-share ul li {
    display: inline-block;
    margin: 0px 3px;
    margin-bottom: 5px;
}

.article-share ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
    color: #0e1133;
    background: #f3f4f8;
    border-radius: 4px;
}

.article-share ul li a:hover {
    background: var(--theme-secondary-color);
    color: #fff;
}

.post-tags a {
    padding: 3px 20px;
    background: #F4F5F8;
    display: inline-block;
    margin-bottom: 5px;
    color: #000;
    border-radius: 5px;
}

.post-tags a:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.post-single-author {
    background: #F4F5F8;
    padding: 40px;
}

.post-single-author .author-img {
    float: left;
    margin-right: 40px;
}

.post-single-author .author-img img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
}

.post-single-author .author-info {
    overflow: hidden;
}

.post-single-author .author-info span {
    display: block;
    margin-bottom: 10px;
    color: var(--theme-secondary-color);
}

.post-single-author .author-info p {
    margin-bottom: 0px;
}

.common-form .title {
    margin-bottom: 10px;
}

.common-form p {
    margin-bottom: 30px;
}

.comments .has-children {
    margin-left: 60px;
    display: block;
}

.comment-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    border: 1px dashed #ddd;
    padding: 30px;
    border-radius: 7px;
}

.comment-box .comment-avatar {
    margin-right: 30px;
}

.comment-box .comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.comment-box .comment-info h5 {
    margin-bottom: 0px;
}

.comment-box .comment-info span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
}

.comment-box .comment-info p {
    margin-bottom: 20px;
}

.comment-box .reply-link {
    display: inline-block;
    color: #2b4eff;
    background: rgba(43, 78, 255, 0.1);
    line-height: 22px;
    padding: 3px 8px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
}

.comment-box .reply-link i {
    margin-right: 5px;
}

.comment-box .reply-link:hover {
    background: var(--theme-secondary-color);
    color: #fff;
}

/* ====================
Footer Section
======================*/
.footer {
    padding: 40px 0px 0;
    position: relative;
    background: #000000;
}

.footer .footer-widget .widget-title {
    text-transform: capitalize;
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer .footer-widget p {
    color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links li {
    padding: 5px 0px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-bottom: 5px;
    transition: all .4s ease;
}

.footer .footer-links a:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background: #fff;
    opacity: 0;
    transition: all .4s ease;
}

.footer .footer-links a:hover {
    color: #fff;
}

.footer .footer-links a:hover:before {
    width: 100%;
    opacity: 1;
}

.footer .footer-socials a {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-right: 10px;
}

.footer .footer-socials a:hover {
    color: var(--theme-secondary-color);
}

.footer-mid {
    padding-bottom: 80px;
}

.footer-btm {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-logo {
    margin-right: 20px;
}

.footer-btm-links a {
    color: #fff;
    opacity: .8;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 20px;
}

.footer-btm-links a:hover {
    color: var(--theme-secondary-color);
    opacity: 1;
}

.copyright a {
    color: #fff;
}

.copyright a:hover {
    color: var(--theme-secondary-color);
}

/*----------------------
Fixed top top bottom
--------------------*/
.fixed-btm-top a {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 50px;
    text-align: center;
    padding-top: 10px;
    width: 50px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.09);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
}

.fixed-btm-top a:hover {
    background: var(--theme-primary-color);
    color: #fff;
}

.fixed-btm-top.reveal a {
    opacity: 1;
    visibility: visible;
}

.footer-2 {
    background: #031F42;
}

.footer-2 .fixed-btm-top a {
    background: #031F42;
}

.footer-2 .fixed-btm-top a:hover {
    background: var(--theme-primary-color);
}

.footer-3 {
    /*background: #120F2D;*/
    background: #333333;
}

.footer-3 .fixed-btm-top a {
    /*background: #031F42;*/
    background: rgba(0, 0, 0, 0.65);
}

.footer-3 .fixed-btm-top a:hover {
    background: var(--theme-primary-color);
}

.footer-3 .border-bottom {
    border-bottom: 1px solid #5b5b5b !important
}

/* .footer-4 {
    background: #120F2D;
}

.footer-4 .copyright {
    color: #fff;
    opacity: .8;
} */


.member-banner .btn-vip {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
}


.img-by-vip .btn-vip {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.img-by-vip img {
    min-height: 70px;
    object-fit: cover;
}

/*# sourceMappingURL=maps/style.css.map */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 80px;
}

.banner-img {
    width: 100%;
    min-height: 160px;
    object-fit: cover;
}

.about-3 .about-title {
    height: 60px;
    line-height: 60px;
    position: relative;
}

.about-3 .about-title:after {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--theme-primary-color);
    transition: all .4s ease;
    position: absolute;
    left: 0;
    bottom: 0;
}

.course-details-header {
    background: #222127;
}

.course-details-header .content-map {
    background: #29282F;
}

.course-details-header .content-list {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    position: absolute;
}

.content-list::-webkit-scrollbar {
    width: 8px;
}

.content-list::-webkit-scrollbar-track {
    border-radius: 10px;
}

.content-list::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: #888888;
}

.content-list::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 0, 0, 0.4);
}

.course-details-header .content-list .box {
    border-top: 1px solid #333238;
    cursor: pointer;
}

.course-details-header .content-list .box.active {
    background: #222127;
}

.course-details-header .content-list .box p {
    font-size: 14px;
}

.course-details-header .content-list .box .students {
    font-size: 12px;
}

.course-details-header .content-list .box .badge {
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
}

.course-chapter .box {
    color: var(--theme-text-color);
    cursor: pointer;
    height: 66px;
}

.course-chapter.style-2 .box {
    height: 54px;
}

.course-chapter .box.active,
.course-chapter .box:hover {
    background: #FBF2E9;
}

.course-chapter .box .icon {
    width: 25px;
    transform: translateY(-2px);
}

.course-chapter .box .badge {
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
}

.collapse-btn .fa-chevron-up {
    display: none;
}

.collapse-btn[aria-expanded="true"] .fa-chevron-up {
    display: block;
}

.collapse-btn[aria-expanded="true"] .fa-chevron-right {
    display: none;
}


.bread-map .list-inline li {
    position: relative;
    padding-right: 10px;
    display: inline-block;
}

.bread-map .list-inline li:after {
    position: absolute;
    content: ">";
    right: -6px;
    top: 0px;
    bottom: 0px;
    margin: auto 0px;
    font-size: 16px;
}

.bread-map .list-inline li:last-child:after {
    display: none;
}

.bread-map .list-inline-item a {
    color: var(--theme-text-color);
}


.login-modal .login-type,
.login-modal .register1-type,
.login-modal .register2-type,
.login-modal .reset-type,
.login-modal .scancode-type {
    display: none;
}

.login-modal[data-type="login"] .login-type,
.login-modal[data-type="register1"] .register1-type,
.login-modal[data-type="register2"] .register2-type,
.login-modal[data-type="reset"] .reset-type,
.login-modal[data-type="scancode"] .scancode-type {
    display: block;
}

.login-modal .login-icon {
    width: 38px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.login-modal .login-icon img {
    display: none;
}

.login-modal[data-type="login"] img[data-changetype="scancode"] {
    display: block;
}

.login-modal[data-type="scancode"] img[data-changetype="login"] {
    display: block;
}


.login-modal .close {
    width: 38px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(180%);
}

.login-modal .login-img {
    width: 400px;
}

.login-modal .qrcode-img {
    max-width: 240px;
    border: 1px solid #E5E5E5;
}

.login-modal .form-control {
    height: 40px;
    background: transparent;
    border: 1px solid #E5E5E5;
}

.login-modal .form-check-input {
    border: 1px solid #E5E5E5;
    margin-top: 8px;
}

.login-modal .forget-password {
    text-decoration: underline;
    cursor: pointer;
}


.my-header-section {
    /*height: 188px;*/
    background: url("../images/home/my-3.html") no-repeat;
    background-size: cover;
}

.my-header-section .my-header {
    height: 188px;
}

.my-header-section .head-img {
    width: 101px;
    height: 127px;
    position: relative;
}

.my-header-section .head-img:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url("../images/home/my-2.html") no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.my-header-section .course-filter {
    margin-bottom: 8px;

}

.my-header-section .course-filter li.active a {
    color: #ffffff;
}

.my-course-section {}

.my-course-section .select-column-box {
    cursor: pointer;
}

.my-course-section .select-column-box .title {
    height: 56px;
    line-height: 28px;
    font-size: 14px;
    color: #666666;
}

.my-course-section .select-column-box.active {
    background: #F7D8AD;
    position: relative;
}

.my-course-section .select-column-box.active:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 12px solid #F7D8AD;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}


.my-course-section {}

.my-course-section .col-form-label {
    width: 120px;
    text-align: right;
    flex-shrink: 0;
}

.my-course-section .col-form-label span {
    color: #DF1823;
}


.my-course-section .form-control {
    height: 40px;
    background: transparent;
    border: 1px solid #E5E5E5;
}

.my-course-section .form-check-input {
    border: 1px solid #E5E5E5;
    margin-top: 8px;
}


.solution-details-header {
    background: url("../images/home/solution-banner.html") no-repeat;
    background-size: cover;
}

.member-details-header {
    background: url("../images/home/member-details-header.html") no-repeat;
    background-size: cover;
}

.member-details-box {
    background: rgba(47, 49, 69, 0.3);
}

.member-details-box .course-thumb {
    /*width: 320px;*/
}

.member-details-box .label p {
    font-size: 13px;
    color: #8E8D91;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    padding: 0 6px;
    margin: 0 10px 10px 0;
}

.member-details-box .vip-color {
    color: #CFA25C;
}

.book-map {
    overflow: auto;
}

.book-map .container {
    min-width: var(--container-max-width) !important;
}

.book-box.style-1 {
    display: block;
    overflow: hidden;
}

.book-box .title {
    height: 45px;
    font-size: 15px;
}

.book-box .sub-title {
    height: 46px;
    line-height: 23px;
    font-size: 13px;
}

.book-box .price {
    color: #FA7477;
    font-size: 18px;
}

.book-box.style-1 .title,
.book-box.style-1 .price {
    color: rgba(255, 255, 255, 0.8) !important;
}

.book-box.style-1 .txt {
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 100px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    position: absolute;
    bottom: 0;
    left: 0;
}

.book-box:hover .title {
    color: var(--theme-primary-color) !important;
}

.book-box.style-1:hover .title,
.book-box.style-1:hover .price {
    color: rgba(255, 255, 255, 1) !important;
}

/*.course-box*/
.course-box .img {
    width: 230px;
}

.course-box .text {
    line-height: 2;
    height: 56px;
}

.course-box:hover .title,
.teacher-box:hover .title,
.teacher-box:hover .text {
    transition: all .3s;
    color: var(--theme-secondary-color) !important;
}

.course-box:hover .text,
.teacher-box:hover .text {
    transition: all .3s;
    color: var(--theme-content-color) !important;
}


.course-box label {
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    margin-right: 8px;
    padding: 0 8px;
    border-radius: 2px;
}



/***

====================================================================
		project-one Section
====================================================================

***/

.project-one-section {
    padding: 70px 0 100px;
    position: relative;
}

.project-one__carousel {
    position: relative;
    display: block
}

.project-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0
}

 
 
 
 

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1
}

.project-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, .30);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: top center;
    border-radius: 10px;
    z-index: 1
}

.project-one__single:hover .project-one__img:before {
    transform: scale(1, 1);
    transform-origin: bottom center
}

.project-one__img img {
    width: 100%;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 500ms ease
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05)
}

.project-one__content {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 10px 60px 0 rgb(0, 0, 0, .07);
    border-radius: 10px;
    padding: 15px 25px;
    margin-top: -40px;
    /*transform: translateY(-50%);*/
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;

}

.project-one__content:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--theme-secondary-color);
    box-shadow: 0 10px 60px 0 rgb(0, 0, 0, .07);
    transition: all 500ms ease;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    border-radius: 10px;
    z-index: -1
}

.project-one__single:hover .project-one__content:after {
    opacity: 1;
    transform: scaleY(1.0)
}

.project-one__single:hover .project-one__tagline,
.project-one__single:hover .project-one__title {
    color: #ffffff;
}

.project-one__tagline {
    font-size: 15px;
    margin: 0;
    line-height: 25px;
    transition: all 500ms ease;
    color: #666666;
}

.project-one__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    transition: all 500ms ease;
    color: #222125;
}

/***
=============================================
    woutput-section Section
=============================================
***/

.woutput-section {
    padding: 100px 0 70px;
    position: relative;
    /*overflow: hidden;*/
}

.woutput-box {
    min-height: 380px;
    text-align: center;
    padding: 50px 40px 40px;
    transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 0px 10px rgba(98, 98, 39, 0.05);
    cursor: pointer;
    margin-bottom: 25px;
    background: #ffffff;
}

.woutput-box .i-img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
}

.woutput-box p {
    margin-top: 16px;
    /*color: #B6B6B6;*/
}



/***
=============================================
    wisdom-section Section
=============================================
***/

.wisdom-section {
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.wisdom--icon {
    width: 188px;
    height: 380px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: -120px;
    opacity: .80;
}


/***
=============================================
    woutput-section Section
=============================================
***/

.waction-section {
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.waction-shape-2 {
    width: 488px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 80px;
    bottom: -220px;
    opacity: .80;
}

.waction-box {
    min-height: 280px;
    /*text-align: center;*/
    padding: 50px 40px 40px;
    transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 0px 20px rgba(98, 98, 39, 0.1);
    cursor: pointer;
    margin-bottom: 30px;
    background: #ffffff;
}

.waction-box .iconfont {
    display: inline-block;
    margin-top: 10px;
    font-size: 48px;
    color: var(--active-color);
}

.waction-box .waction-title {
    margin-top: 20px;
}

.waction-box p {
    /*margin-top: 10px;*/
    margin-bottom: 5px;
}


/*tables*/
.tables-body {
    min-width: 1200px;
}

.tables-body p.pre-line {
    color: var(--theme-content-color);
}

.tables-padding {
    padding-left: 40px;
    padding-right: 40px;
}

.tables-header {
    height: 50px;
    background: var(--theme-primary-color);
    box-sizing: unset;
}

.tables-top-menu {
    background: var(--theme-primary-color);
}

.tables-top-menu .btn {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.tables-top-menu .btn.active {
    color: var(--theme-primary-color);
}


.tables-search-form {
    padding: 30px 0 20px;
}

.tables-search-form select,
.tables-search-form input {
    width: 200px;
    height: 38px;
    box-sizing: border-box;
    border: 1px solid #DDDDDD;
    outline: none;
    font-size: 14px;
    color: #666666;
    padding: 0 10px;
    margin-bottom: 10px;
}

.tables-search-form .btn {
    box-sizing: border-box;
    height: 38px;
}


.tables-table-map {}

.tables-table-map .table {
    border-right-width: 1px;
    border-right-style: solid;
    position: relative;
}

.tables-table-map .table thead {
    background: #DDDDDD;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
}

.tables-table-map .table thead th {
    border: none !important;
    font-weight: normal;
    color: #333333;
    font-size: 14px;
    padding: 0.5rem 1.2rem;
}

.tables-table-map .table td {
    border-left-width: 1px;
    padding: 1rem 1.2rem;
    color: #999999;
    font-size: 14px;
    white-space: pre-line;
}


.tables-tab-map {
    width: 100%;
}

.tables-tab-map .nav-pills {
    width: 280px;
    background: #4A4D62;
}

.tables-tab-map .nav-pills .nav-link {
    padding: 0 16px;
    border-radius: 0;
    cursor: pointer;
}

.tables-tab-map .nav-pills .nav-link * {
    color: #ffffff;
    font-size: 12px;
}

.tables-tab-map .nav-pills .nav-link img {
    margin-right: 15px;
}

.tables-tab-map .nav-pills .nav-link p {
    opacity: 0.6;
    margin-bottom: 0;
}

.tables-tab-map .nav-pills .nav-link h4 {
    font-size: 15px;
    opacity: 0.8;
}

.tables-tab-map .nav-pills .nav-link .iconfont {
    font-size: 30px;
    opacity: 0.4;

}

.tables-tab-map .nav-pills .nav-link.active {
    background: linear-gradient(to right bottom, #FC7A7A, var(--theme-primary-color));
}

.tables-tab-map .nav-link .nav-box {
    padding: 20px 0 14px;
    border-top: 2px solid #696B7B;
}

.tables-tab-map .nav-link:first-child .nav-box,
.tables-tab-map .nav-link.active .nav-box,
.tables-tab-map .nav-link.active+.nav-link .nav-box {
    border-top-color: transparent;
}

.tables-tab-map .tab-content {
    height: calc(100vh - 150px);
    overflow-y: auto;
}




#masthead {
    position: relative;
    height: 70px;
    margin: 0px 0 23px 0;
    padding-top: 16px;
}

#masthead .qr_code {
    display: block;
    position: absolute;
    right: 0;
    top: -16px;
    width: 100px;
    height: 32px;
    line-height: 32px;
    color: #888;
    padding-bottom: 58px
}

#masthead .qr_code:hover {
    color: #ff7300;
    text-decoration: none
}

#masthead .ali-search ul.alisearch-type {
    margin-bottom: 5px;
    padding-left: 12px
}

#masthead .ali-search ul.alisearch-type li {
    padding: 0 14px 0 15px;
    font: normal 12px/24px 微软雅黑;
}

#masthead .ali-search ul.alisearch-type li.first {
    padding-left: 0
}

#masthead .ali-search ul.alisearch-type li a {
    color: #222;
    display: block;
    text-decoration: none
}

#masthead .ali-search ul.alisearch-type li a:hover,
#masthead .ali-search ul.alisearch-type li.current a {
    color: #ff7300
}

#masthead .ali-search #alisearch-submit {
    display: block;
    height: 40px;
    width: 100px;
    background-color: #FF7300;
    line-height: 40px;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    font-family: "Microsoft YaHei"
}

#masthead .indexweibo {
    position: relative;
}

#masthead .indexweibo .indexweibo1 {
    position: absolute;
    right: 0;
    top: 0px;
    padding: 0px;
    border: 1px solid #ddd;
    background: #fff;
    z-index: 200;
    display: none;
}

#masthead .indexweibo .indexweibo1 img {
    width: 135px;
    height: 135px;
}

#masthead .alisearch {
    font: normal 15px/24px 微软雅黑;
    margin: 2px 0;
    height: 24px;
}

#masthead .alisearch a {
    color: #666666;
}

#masthead .alisearch a.class {
    color: #FF7300;
}

#masthead .alisearch a:hover {
    color: #FF7300;
}

#masthead .alisearch span {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #DDDDDD;
    margin: 0px 15px;
}

#mastheadfx {
    margin: 0px 0 5px 0;
}

#mastheadfx .indexweibofx {
    width: 200px;
}

#mastheadfx .indexweibofx .indexweibofx1 {
    position: absolute;
    right: 0;
    top: 320px;
    margin-right: 80px;
    padding: 5px;
    border: 1px solid #ddd;
    background: #fff;
    z-index: 100;
    width: 180px;
    display: none;
}

#mastheadfx .indexweibofx .indexweibofx1 img {
    width: 180px;
    height: 180px;
}

.home-banner {
    height: 500px;
}

.home-menu .submenu-map {
    position: absolute;
    top: -500px;
    opacity: 1;
    visibility: visible;
}



.home-menu .home-banner-right {
    width: 264px;
    position: absolute;
    top: -500px;
    right: 0;
    z-index: 10;
 
}

.home-menu .home-banner-right .top {
    height: 294px;
    margin-bottom: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.home-menu .home-banner-right ul {
    border-bottom: 1px solid #ddd;
    padding: 0 20px;
}

.home-menu .home-banner-right ul li {
    height: 42px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    margin-right: 30px;
    font-weight: 500;
    font-size: 15px;
    color: #666666;
}

.home-menu .home-banner-right ul li.current {
    color: #E62129;
    border-bottom: 2px solid #E62129;
}

.home-menu .home-banner-right .top .content {
    padding: 10px 18px;

}

.home-menu .home-banner-right .top .content ol {
    list-style: disc;
    padding-left: 18px;
}

.home-menu .home-banner-right .top .content ol li {
    line-height: 22px;
}

.home-menu .home-banner-right .top .content ol li a {
    display: block;
    font-size: 13px;
    color: #666;
}

.home-menu .home-banner-right .content ol li a:hover {
    color: var(--theme-primary-color);
}

.home-menu .home-banner-right .top .content button {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    cursor: pointer;
}

.home-menu .home-banner-right .top .content .join {
    width: 227px;
    height: 36px;
    background: #D73636;
    border-radius: 18px;
    border: none;
    margin-top: 15px;
    margin-bottom: 15px;

}

.home-menu .home-banner-right .top .content .register {
    width: 227px;
    height: 36px;
    background: #FF742F;
    border-radius: 18px;
    border: none;
}

.home-menu .home-banner-right .bot {
    height: 161px;
    overflow: hidden;
}

.home-menu .home-banner-right .bot .content {
    padding: 3px 18px 0;
}

.home-menu .home-banner-right .bot .content  .li {
    line-height: 24px;
}

.home-menu .home-banner-right .bot a {
    display: block;
    font-size: 13px;
    color: #666;
}
.home-menu .home-banner-right .bot a:hover{
    color: var(--theme-primary-color);
}

.home-statistics-row {
    height: 128px;
    align-items: center;
}

.home-statistics-row .client {
    margin: 0 25px;
}

.home-statistics-row .number {
    font-size: 48px;
    color: var(--theme-primary-color);
    position: relative;
    line-height: normal;
}

.home-statistics-row .number .jia {
    font-size: 30px;
    vertical-align: text-top;
}

.home-statistics-row .text {

    font-weight: 500;
    font-size: 16px;
    color: #666666;
}

.home-statistics-row .frist {
    margin-right: 15px;
}

.home-statistics-row .last {
    margin-left: 20px;
}


.home-card .home-teacher {
    height: 614px;
}

.home-card .title {
    padding: 0 18px;
    height: 63px;
    border-bottom: 1px solid #ddd;
}

.home-card .title .text {
    font-weight: bold;
    font-size: 20px;
    color: #444444;
}

.home-card .title .tips {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.6;
}

.home-card .home-teacher .left ul {
    width: 228px;
    border-right: 1px solid #ddd;
}

.home-card .home-teacher .left ul li {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 49px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.home-card .home-teacher .left ul li span.tips {
    display: none;
}

.home-card .home-teacher .left ul li.active {
    background: #D6040D;
    color: #fff;
}

.home-card .home-teacher .left ul li.active span.tips {
    display: block;
}

.home-card .home-teacher .left ul li:last-child {
    border-bottom: 0;
}

.home-card .home-teacher .right {
    padding-top: 18px;
    padding-left: 38px;
    padding-right: 25px;
}

.home-card .home-teacher .right ul li {
    display: none;
}

.home-card .home-teacher .right ul li.active {
    display: block;
}

.home-card .home-teacher .right .list {
    padding: 17px;
    box-sizing: border-box;
}

.home-card .home-teacher .right .teacher {
    width: 117px;
    border-radius: 3px;
    overflow: hidden;
}

.home-card .home-teacher .right p {
    font-size: 13px;
    line-height: 18px;
    color: #777;
}

.home-card .home-teacher .right p:hover {
    color: var(--theme-color-text);
}

.home-card .home-teacher .right .text-body {
    font-size: 16px;
}

.home-card .home-teacher .right .bot {
    padding: 0 17px;
}

.home-card .home-teacher .right .bot>div {
    padding-right: 40px;
}

.home-card .home-teacher .right .bot>div a p {
    line-height: 28px;
}

.home-card .home-category .content {
    padding: 30px;

}

.home-card .home-category .content .left {
    width: 140px;
    margin-right: 40px;
}

.home-card .home-category .content li {
    margin-bottom: 30px;
}

.home-card .home-category .content li:last-child {
    margin-bottom: 0;
}

.home-card .home-bps .content {
    padding: 22px 25px 30px;
}
.contentgao {
    padding: 22px 1px 30px;
}

.home-card .home-bps .list {
    margin-right: 15px;
    width: 296px;
}
.listgao {
    margin-right: 15px;
    width: 243px;
}
.home-card .home-bps .list .hover-img {
    height: 199px;
    overflow: hidden;
}
.home-card .home-bps .listgao .hover-imggao {
    height: 199px;
    overflow: hidden;
}
.home-card .home-bps .list:last-child {
    margin-right: 0;
}

.home-card .home-bps .list .bps-title {
    font-size: 17px;
    line-height: 1.4;
}

.home-card .home-bps .list .tips {
    margin-top: 10px;
}

.home-card .home-bps .list .tips span {
    padding: 5px 8px;
    margin-right: 5px;
    background: #F5F5F5;
    font-size: 12px;
}

.home-card .home-page4 .content {
    padding: 40px 25px;
}

.home-card .home-logo .content {
    padding: 20px 10px 30px;
}

.home-card .home-logo img {
    width: 177px;
    height: 91px;
    border: 1px solid #ddd;
    margin: 0 12px 20px;
}

.home-card .home-logo img:hover {
    transition: transform 1s;
    transform: scale(1.08);
}






.news-box.style-1 {
    border-radius: 8px;
    overflow: hidden;
}

.news-box .img {
    width: 122px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.news-box .img:after,
.video .img:after {
    content: "";
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0
}

.news-box .img .play,
.video .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.news-box:hover img {
    transition: all 0.3s;
    transform: scale(1.08);
}

.news-box.style-1 .title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
}

.news-box:hover .title {
    color: var(--theme-primary-color) !important;
}

.news-box.style-1:hover .title {
    color: rgba(255, 255, 255, 0.9) !important;
}

.home-certificate {
    padding: 60px 0;
}

.home-certificate h3 {
    line-height: 48px;
    margin-bottom: 55px;
}

.home-certificate .certificate-left,
.home-certificate .certificate-right {
    width: 50%;
    overflow: hidden;
}

.home-certificate .swiper-wrapper .swiper-slide img {
    border: 12px solid #fdede2;
    margin-right: 15px;
}

.home-certificate .swiper-wrapper .swiper-slide img.big {
    height: 380px;
}
.home-certificate .swiper-wrapper .swiper-slide .page2 img {
    height: 180px;
}
.home-certificate .swiper-wrapper .swiper-slide .page2 img:first-child {
    margin-bottom: 20px;
}

.home-certificate .swiper-pagination-bullet {
    width: 51px;
    height: 5px;
    background: rgba(62, 62, 62, 1);

    border-radius: 0;
    margin-right: 9px;
}

.home-certificate .swiper-pagination-bullet-active {
    background: #D6040D;
}



.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}


.course .course-box:first-child {
    border-top: none !important;
}

.course .course-box .more {
    width: 116px;
    height: 40px;
    line-height: 40px;

    border-radius: 25px;
    border: 1px solid var(--theme-primary-color)
}

.course .teacher-box:first-child {
    border-top: none !important;
}






/* 左圆右方 start*/
.banner-section {
    position: relative;
}

.banner-carousel {
    position: relative;
}

.banner-carousel .swiper-slide {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*padding: 350px 0 260px;*/
}

.banner-carousel .swiper-slide:before {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0e1030;
    opacity: .70;
    content: "";
}

.banner-carousel .content-box {
    position: relative;
    margin: 0 auto;
    /*text-align: center;*/
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    /*letter-spacing: 6px;*/
    margin-bottom: 30px;

}

.banner-carousel .swiper-slide-active .content-box .title {
    opacity: 0.88;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-carousel .content-box h2 {
    display: block;
    font-size: 36px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;

}



.banner-carousel .content-box .info-list li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 15px;
    padding-right: 20px;
    text-transform: uppercase;
}

.banner-carousel .content-box .info-list li .icon {
    color: #ff8a01;
    margin-right: 10px;
    float: left;
    font-size: 18px;
    line-height: 26px;
}

.banner-carousel .content-box .info-list li:before {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    content: "|";
}

.banner-carousel .content-box .info-list li:last-child:before {
    display: none;
}

.banner-carousel .content-box .btn-box {
    margin-top: 20px;
    position: relative;

}

.banner-carousel .content-box .btn-box a {
    padding: 15px 32px;
    border-radius: 50rem;
}

.banner-carousel .content-box .btn-box .iconfont {
    font-size: 22px;
}

.banner-carousel .swiper-slide-active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.banner-section.involution-banner .swiper-slide {
    padding: 60px 0 60px;
}

.btn-style-nine {
    display: inline-block;
    padding: 18px 32px;
    text-align: center;
    color: #ffffff !important;
    font-size: 20px;
    background: #f4462f;
    border: none;
    font-weight: 600;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    font-family: "Fira Sans", sans-serif;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.btn-style-nine::after {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    transform: rotate(35deg);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.btn-style-nine:hover::after {
    left: 120%;
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.3;
}

.about-area2-section {
    padding: 120px 0 100px;
    position: relative;

}

.about-area2-section .icon-s-3 {
    width: 333px;
    height: 110px;
    position: absolute;
    right: 20px;
    bottom: 0px;
    opacity: 0.6;
}

.about-area2-section .icondots2 {
    width: 120px;
    height: 120px;
    position: absolute;
    left: 0;
    top: -30px;
    z-index: 1;
}

.about-area2-section .about-img {
    display: block;
    width: calc(100% - 50px);
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.about-area2-section .about-text {
    width: 221px;
    height: 220px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 3;
}

.about-area2-section .about-content p {
    margin-bottom: 45px
}

.service-img-boxed-group {
    padding: 75px 70px;
    background-image: linear-gradient(91deg, #e57624 0%, #ffa751 100%);
}

.service-section {
    padding: 120px 0 100px;
}


.service-info-wrapper {
    padding: 71px 70px;
}

.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.sec-title h2 {
    position: relative;
    display: inline-block;
    font-size: 36px;
    line-height: 1.2em;
    color: #333333;
    font-weight: 700;
}

.sec-title h3 {
    position: relative;
    display: inline-block;
    font-size: 28px;
    line-height: 1.2em;
    color: #333333;
    font-weight: 700;
}

.sec-title .nto-title {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 1em;
    color: #7C7C7E;
    font-weight: 500;
    /*text-transform: uppercase;*/
    /*letter-spacing: 5px;*/
    margin-top: 15px;
}

.service-info-wrapper .icon img {
    width: 280px;
    /*height: 50px;*/
    margin-bottom: 37px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;

}

.single-service-img-inner .service-img-1 {
    height: 200px;
    width: 360px;
    object-fit: cover;
    border-radius: 4px;
}

.single-service-img-inner .service-img-2 {
    width: 200px;
    border-radius: 4px;
    height: 220px;
    object-fit: cover;
    position: relative;
    z-index: 9;
    object-position: top left;

    -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
    -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
    -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
    animation: hero-thumb-sm-animation 4s linear infinite alternate;
    /*box-shadow: -11.722px -27.615px 60px 0px #00153e1a;*/

}

@keyframes hero-thumb-animation {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.single-service-img.negative-space {
    margin-top: -150px;
    text-align: right;
}

.service-info-desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.7;
    color: #fff;
    margin-bottom: 37px;
}

.service-count-number {
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border: 2px solid #dbdde3;
    margin-right: 20px;
    border-radius: 50px;
    color: #0a1426;
    font-weight: 600;
}

.single-service-list d-flex:hover .service-count-number {
    color: #fff;
    background: var(--color-active);
    border-color: transparent;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-item {
    padding: 0 1rem;
}

.nav-tabs .nav-item .nav-link {
    border: none;
    padding: 1.2rem 0 0.8rem;
    font-size: 16px;
    background: transparent;
    box-sizing: border-box;
    transition: none;
}

.nav-tabs .nav-item .nav-link.active {
    color: #ff2d3f;
    border-bottom: 2px solid #ff2d3f;
}

.table-section {
    padding: 100px 0 100px;
}

.table-section thead {
    text-align: center;
    background: #EF8A29;
    color: #ffffff;
    font-size: 18px;
}

.table-section td {
    text-align: center;
}

.table-section .nav-tabs .nav-item .nav-link.active {
    color: #333333;
    border-bottom: 2px solid #EF8A29;
}

.table-section .color-active {
    color: #EF8A29 !important;
}

.business-section .about-business ul {
    margin: 30px 0;
    list-style: none;
    /*padding-left: 25px;*/
}

.business-section .about-business ul li {
    margin-bottom: 15px;
    font-size: 17px;
}

.business-section .about-business ul li svg {
    transform: translateY(3px);
    margin-right: 5px;
}


.slick-box {
    display: block;
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 0px 10px rgba(98, 98, 39, 0.06);
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.slick-box .slick-txt {
    height: 230px;
    padding: 30px 25px 0;
    position: relative;
}

.slick-box .slick-txt .badge {
    background: #FFA100;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 8px;
}

.slick-box .slick-time {
    background: #F23B1F;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    position: absolute;
    right: 20px;
    top: 0;
    transform: translateY(-50%);
    z-index: 2;
}

/* 左圆右方 end*/





/* start */

.choose-section {
    padding: 100px 0 70px;
}

.choose-section .left-con .img {
    border-radius: 10px;
}

.choose-section .left-con .icon-img {
    position: absolute;
    width: 312px;
    left: -150px;
    bottom: 0;
    z-index: -1;
}

.choose-list {
    /*float: left;*/
    /*width: 100%*/
}

.choose-list ul li {
    position: relative;
    min-height: 80px;
    padding: 15px 0 15px 100px;
    box-sizing: unset;
    /*margin-top: 30px;*/
}

.choose-list ul li::before {
    content: "";
    height: 100%;
    width: 1px;
    border-left: 1px dotted #000;
    position: absolute;
    left: 35px
}

.choose-list ul li:last-child {
    padding-bottom: 0
}

.choose-list ul li:last-child::before {
    display: none
}

.choose-list ul li .title {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.choose-list ul li .nto {
    font-size: 15px;
    color: #666666;
    margin-top: 8px;
}

.choose-list ul li .num {
    width: 70px;
    height: 70px;
    background: #ebebeb;
    line-height: 70px;
    color: #989898;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: 6px;
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.choose-list ul li:hover .num {
    background-image: -moz-linear-gradient(0deg, #ed1e24 0, #ed501b 100%);
    background-image: -webkit-linear-gradient(0deg, #ed1e24 0, #ed501b 100%);
    background-image: -ms-linear-gradient(0deg, #ed1e24 0, #ed501b 100%);
    color: #fff
}

.choose-list ul li .num .iconfont {
    font-size: 29px;
}


.perjectbg-section {
    padding: 70px 0 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.perjectbg-box {
    min-height: 480px;
    text-align: center;
    padding: 50px 40px 40px;
    transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 0px 20px rgba(98, 98, 39, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.perjectbg-box:after {
    content: "";
    display: inline-block;
    width: 70%;
    height: 10px;
    border-radius: 5px;
    background: var(--active-color);
    position: absolute;
    left: 15%;
    top: -5px;

}

.perjectbg-box.color-1:after {
    background: #FFB038;
}

.perjectbg-box.color-2:after {
    background: #F22C24;
}

.perjectbg-box.color-3:after {
    background: #218AFF;
}

.perjectbg-box .perjectbg-title {
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 20px;
}


.qyvalue-box {
    height: 380px;
    text-align: center;
    padding: 50px 40px 40px;
    transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 0px 20px rgba(98, 98, 39, 0.1);
    cursor: pointer;
    margin-bottom: 25px;
    background: #ffffff;
}

.qyvalue-box:hover .qyvalue-icon img {
    animation: swing 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.qyvalue-box .qyvalue-title {
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 20px;
}

.single-feature-2 {
    min-height: 400px;
    text-align: center;
    padding: 50px 40px 40px;
    transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 10px 20px 0px rgba(98, 98, 39, 0.1);
    cursor: pointer;
}

.single-feature-2 .feature-content-title-2 {
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 20px;
}

.feature-shape-2 {
    position: absolute;
    right: 370px;
    top: -138px;
}

.listing-feature-content-title {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    margin-top: 8px;
}

.listing-feature-content-desc {
    font-size: 15px;
    color: #686868;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

 
 
 
/*
   * 	Owl Carousel - Lazy Load Plugin
   */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*
   * 	Owl Carousel - Video Plugin
   */
 

.previous-section{
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.previous-section .shape-icon {
    width: 600px;
    height: 600px;
    position: absolute;
    left: -20px;
    top: -180px;
}
.previous-section .swiper-wrapper{
    padding-bottom: 80px;
}
 
.previous-section .swiper-pagination span{
    display: inline-block;
    width: 16px;
    height: 8px;
    margin: 0 3px;
    border-radius: 3px;
    background: #979797;
}
.previous-section .swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: #F23B1F;
}

.previous-box {
    display: block;
    height:445px;
    padding: 15px 15px 0;
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 0px 30px rgba(98, 98, 39, 0.1);
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.previous-box::after {
    content: "";
    width: 143px;
    height: 101px;
    background-image: url(../images/icons/right-ico.html);
    background-size: 100% 100%;
    opacity: 0.3;
    position: absolute;
    right: -10px;
    bottom: -10px;
}


.previous-box:hover {
    background: #F23B1F;
}

.previous-box:hover h4,
.previous-box:hover p,
.previous-box:hover div {
    color: #ffffff !important;
}


.previous-box .previous-img {
    width: 100%;
    height: 258px;
    overflow: hidden;
    flex-shrink: 0;
}

.previous-box .previous-txt {
    flex: 1;
    padding-top:15px;
}

.previous-box .previous-txt h4 {
    font-size: 22px;
    font-weight: normal;
    color: #333333;
}

.previous-box .previous-txt p {
    font-size: 16px;
    color: #666666;
    margin-top: 10px;
}

 

 

.revolving-section{
    padding: 0 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /*overflow: hidden;*/
}
.revolving-thumb{
    position: relative;
    z-index: 10;
}

.revolving-thumb span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ed1e24;
    box-shadow: 0 8px 18px 0 rgba(237,30,36,0.4);
    margin-bottom: 15px
}

.revolving-num {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 6px 13px 0 rgba(42,67,113,0.15);
    color: #ed1e24;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins',sans-serif;
    line-height: 90px;
    position: absolute;
    z-index: 10;
}

.revolving-section .col-3:nth-child(1) .revolving-num {
    right: -138px;
}

.revolving-section .col-3:nth-child(3) .revolving-num {
    top: -28px;
    left: -140px;
    z-index: 1
}

.revolving-section .revolving-info .revolving-title{
    color: #333333;
    font-size: 22px;
}




/* 新 */


.bg_white{background: #fff;}
.box_3{width:100%;padding-top:3px;}
.box_3 .news_box_title{padding-bottom: 20px;border-bottom: 1px solid #f7f7f7;margin-bottom: 23px;}
.news_box_title_url{flex-grow: 1;margin-right: 20px;}
.news_box_title_url a{font-size:16px;line-height: 20px;color:#333;display: block;margin-left:15px;padding-right: 0;}
.box_3_img{width:100%;}
.box_3_img p{width:100%;display: block;font-size:16px;line-height: 40px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;color:#000;}
.box_3_img_left{width:600px;min-width:632px;max-width:600px;display: block;}
.box_3_img_left a,.box_3_img_left a img{width: 100%;display: block;}
.box_3_img_left a .box_3_img_left_box{height: 380px;object-fit: cover;overflow: hidden;}
.box_3_img_left a .box_3_img_left_box img{width: 100%;height: 100%;object-fit: cover;transition: all ease .5s;display: block;}
.box_3_img_right{width:600px;min-width:600px;max-width:600px;}
.box_3_img_right a{width:275px;margin-left:25px;display: block;}
.box_3_img_right a .box_3_img_right_box{width:100%;height: 168px;object-fit: cover;display: block;overflow: hidden;}
.box_3_img_left a .box_3_img_left_box img,.box_3_img_right a .box_3_img_right_box img{width: 100%;height: 100%;object-fit: cover;transition: all ease .5s;display: block;}
.box_3_img_right a:hover img,.box_3_img_left a:hover img{transform: scale(1.05);}
.box_3_img_right a:hover p,.box_3_img_left a:hover p{color:#C8171E;}
.box_3_news{width:100%;}
.box_3_news .news_box_ul{width:400px;padding: 0 25px 0 7px;margin-top:6px;}
.box_3_news .news_box_ul li a{line-height: 38px;}
.flex-between{display: flex;justify-content: space-evenly;}
.flex_wrap{flex-wrap: wrap;}
.main{width:100%;max-width: 1200px;margin:0 auto;display: block;}

.box_8{width:100%;padding-top:36px;}
.box_8 .news_box_title{padding-bottom: 20px;border-bottom: 1px solid #f7f7f7;margin-bottom: 23px;}
.news_box_title_url{flex-grow: 1;margin-right: 20px;}
.news_box_title_url a{font-size:16px;line-height: 20px;color:#333;display: block;margin-left:15px;padding-right: 0;}
.box_8_img{width:100%;}
.box_8_img p{width:100%;display: block;font-size:16px;line-height: 40px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;color:#000;}
.box_8_img_left{width:608px;min-width:608px;max-width:608px;display: block;}
.box_8_img_left a,.box_8_img_left a img{width: 100%;display: block;}
.box_8_img_left a .box_8_img_left_box{height: 380px;object-fit: cover;overflow: hidden;}
.box_8_img_left a .box_8_img_left_box img{width: 100%;height: 100%;object-fit: cover;transition: all ease .5s;display: block;}
.box_8_img_right{width:600px;min-width:600px;max-width:600px;}
.box_8_img_right a{width:575px;margin-left:25px;display: block;}
.box_8_img_right a .box_8_img_right_box{width:100%;height: 168px;object-fit: cover;display: block;overflow: hidden;}
.box_8_img_left a .box_8_img_left_box img,.box_8_img_right a .box_8_img_right_box img{width: 100%;height: 100%;object-fit: cover;transition: all ease .5s;display: block;}
.box_8_img_right a:hover img,.box_8_img_left a:hover img{transform: scale(1.05);}
.box_8_img_right a:hover p,.box_8_img_left a:hover p{color:#C8171E;}
.box_8_news{width:100%;}
.box_8_news .news_box_ul{width:400px;padding: 0 25px 0 7px;margin-top:6px;}
.box_8_news .news_box_ul li a{line-height: 38px;}

.box_4{width:100%;padding-top:50px;display: block;}
.box_4 .news_box_title{padding-bottom: 7px;border-bottom: 1px solid #f7f7f7;}
.box_4_box{width:100%;margin-top:26px;padding-bottom: 98px;}
.box_4_box_list{width:398px;height: 200px;display: block;margin-right: 16px;position: relative;overflow: hidden;}
.box_4_box_list:last-child{margin-right: 0;}
.box_4_box_list a,.box_4_box_list a img{width:100%;height: 100%;object-fit: cover;display: block;transition: all ease .5s;}
.box_4_box_list a:hover img{transform: scale(1.05);}
.box_4_box_list a p{width:100%;padding:6px 0;line-height: 20px;font-size:20px;color:#fff;background: rgba(0,0,0,.5);text-align: center;position: absolute;bottom:0;right:0;left:0;}

.wz1320{width: 1200px; margin: 0 auto;}
.zdxw_tit{text-align: center; padding: 20px 0 40px;}
.zdxw_tit li{display: inline-block; line-height: 28px;}
.zdxw_tit a{font-weight: bold; font-size: 28px; color: #003399;cursor: pointer;}
.zdxw_tit h1{display: inline-block;vertical-align: middle;}
.zdxw_tit b{font-size: 24px; padding: 0 21px; color: #a2a2a2;display: inline-block;vertical-align: middle;}
.zdxw_tit li.cur a{color: #b01f24;}

.wzxwbox{overflow: hidden;animation:fadeIn .25s, 100ms;}
.wzxw_left{float: left; width: 50%; padding-right: 40px;}
.ttxw{overflow: hidden;}
.ttxw_left{float: left;width: 290px;height: 165px; overflow: hidden;}
.ttxw_left img{width: 100%;height: 100%;object-fit: cover;}
.ttxw_right{float: right;width: calc(100% - 310px);}
.ttxw_right p{font-size: 14px; line-height: 24px; color: #333333;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.ttxw_right h2{font-weight: bold; font-size: 18px;line-height: 24px; margin-bottom: 15px;height: 48px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.ttxw_right a{color: #000;}
.ttxw_right a:hover{color: #b01f24;}
.xwlb{padding: 15px 0 45px;}
.xwlb li{overflow: hidden; border-bottom: 1px dashed #626262; font-size: 16px; line-height: 66px;background: url(../images/zd_41.png) no-repeat left center; padding-left: 25px;}
.xwlb li a{float: left; width: calc(100% - 100px); color: #333;overflow: hidden; text-overflow:ellipsis; white-space: nowrap;}
.xwlb li a:hover{color: #b01f24;}
.xwlb span{float: right;color: #666;}
.wzxw_right{float: right;width: 50%; padding-left: 40px;}
.img2 { transition: All 0.4s ease-in-out; -webkit-transition: All 0.4s ease-in-out; -moz-transition: All 0.4s ease-in-out; -o-transition: All 0.4s ease-in-ou }
.img2:hover { transform: scale(1.1);-webkit-transform: scale(1.1); -moz-transform: scale(1.1);-o-transform: scale(1.1); -ms-transform: scale(1.1); }

