/*!
 * app.css for Jsrhe Web Template
 * Author wzcoder.com
 * @Copyright 2005-2019 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2024-08-21-10:01 PM
 */
.box-thumb:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(var(--linear-gradient));
}

.box-tit {
    font-size: 18px;
    font-weight: 600;
}

.box-sum {
    font-size: 14px;
    color: var(--text-color-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.color-dark {
    background-color: rgba(0, 0, 0, 1);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--text-color-primary);
}

@media (max-width: 480px) {
    .header .logo img {
        max-height: 24px;
    }

    .header .logo h1 {
        font-size: 24px;
    }
}

.header .btn-def,
.header .btn-def:focus {
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
}


@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
}


/* Index Page Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/* logo white
------------------------------*/
.header .logo img {
    filter: grayscale(100%) brightness(500%);
}

.scrolled .header .logo img {
    filter: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #FFFFFF;
        padding: 18px 15px;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .scrolled .navmenu a {
        color: var(--nav-color);

    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover a,
    .navmenu li.active a,
    .navmenu li.active a:focus {
        color: var(--primary-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: #ffffff;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--default-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--primary-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: #FFFFFF;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover > a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #FFFFFF;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .scrolled .mobile-nav-toggle {
        color: var(--nav-color);
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: #ffffff;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--text-color-primary);
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--primary-color);
        color: #FFFFFF;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--primary-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--primary-color);
        color: #FFFFFF;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: #FFFFFF;
        /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
        transition: all 0.5s ease-in-out;
        box-shadow: none;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        /*background-color: rgba(33, 37, 41, 0.03);*/
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: color-mix(in srgb, var(--primary-color), transparent 50%);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--primary-color), transparent 10%);
    color: #FFFFFF;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Banner Slider
--------------------------------------------------------------*/

.slide {
    position: relative;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    z-index: 0;
}

.slide:before {
    content: "";
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    background: var(--layer);
}

.slideshow {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.holder {
    position: relative;
    top: 0;
    left: 0;
    width: 10000vw;
    height: 100vh;
    transition: left 1s;
}

.holder div {
    float: left;
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    align-items: center;
}

.steps {
    position: absolute;
    bottom: 15px;
    left: 50%;
    right: 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background: rgb(0 0 0 / 43%);
    display: table;
    margin: auto;
    padding: 4px 20px;
    border-radius: 4px;
}

.slideshow a.prev,
.slideshow a.next {
    color: #fff;
    position: absolute;
    bottom: 15px;
    text-decoration: none;
    z-index: 1;
    background: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.slideshow a.prev:hover,
.slideshow a.next:hover {
    background: rgba(var(--primary-color-rgb), 0.6);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.banner-content h3 {
    font-size: 75px;
    line-height: 85px;
    font-family: 'Great Vibes', cursive;
}

.banner-content p {
    color: var(--title-color);
    font-size: 18px;
}

@media (max-width: 991px) {
    .banner-content h3 {
        font-size: 65px;
        line-height: 75px;
    }

    .banner-content p {
        font-size: 17px;
    }
}

@media (max-width: 736px) {
    .banner-content h3 {
        font-size: 55px;
        line-height: 65px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 530px) {
    .banner-content h3 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media (max-width: 380px) {
    .banner-content h3 {
        font-size: 40px;
        line-height: 50px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .slideshow a.prev,
    .slideshow a.next {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }

    .steps {
        left: 42%;
    }
}

@media (max-width: 342px) {
    .banner-content h3 {
        font-size: 35px;
        line-height: 45px;
    }
}

/* //banner slider */

.overlay {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.01);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.01)), color-stop(110%, rgba(0, 0, 0, 0.6)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.6) 110%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.6) 110%);
}

/*header*/

/*header*/
.bs-header {
    top: 0;
    z-index: 600;
    left: 0;
    right: 0;
}

.bs-header .logo {
    display: inline-block;
}

.bs-header .logo-wrapper img {
    height: 70px;
    width: auto;
}


@media (max-width: 991.98px) {
    .bs-header .logo-wrapper img {
        height: 40px;
        width: auto;
    }

    .slide-text-wrapper {
        text-align: center;
    }

    .slide-text-wrapper .slide-content, .slide-text-wrapper .slide-desc {
        font-size: 1.1rem !important;
    }

    .btn-banner {
        padding: 0.2168rem 1rem;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }

    .section-head h2, .about-content h2 {
        font-size: 1.4rem !important
    }

    .section-head p {
        font-size: 14px;
    }

}

@media (min-width: 992px) {
    .bs-header {
        position: absolute;
    }

    .bs-header a {
        color: #ffffff !important;
    }

    #navbarMain .nav-link {
        text-shadow: 1px 1px 0px #666;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: left;
    }

    .slide-thumb-wrapper {
        height: 850px !important;
    }

    .slide-text-wrapper .slide-content, .slide-text-wrapper .slide-desc {
        font-size: 1.2rem !important;
    }

    .slide-text-wrapper .slide-title {
        font-size: 3rem;
    }

}


#navbarMain .nav-link {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-toggler {
    top: 10px;
    right: 10px;
    z-index: 700;
}

/*--------------------------------------------------------------
# block text
--------------------------------------------------------------*/
.block-text .b-btn {
    min-width: 155px;
}

#navbarMain .nav-link:hover, #navbarMain .nav-link:active, #navbarMain .nav-link:focus {
    color: var(--focus-color);
}

.js-swiper {
    z-index: 500;
}


.navbar_wrapper .overlay, .jarallax .overlay {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.01);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.01)), color-stop(110%, rgba(0, 0, 0, 0.8)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.8) 110%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.8) 110%);
}

.swiper-slide .slide-text-wrapper {
    z-index: 70 !important;
    position: absolute;
    left: 0;
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
    width: 100%;
    text-shadow: 1px 1px 0px #333;
}


.swiper-pagination-bullet {
    background-color: #ffffff !important;
}

.swiper-button-prev, .wiper-button-next,
.swiper-pagination {
    z-index: 80 !important;
}

.navbar_wrapper {
    height: 150px;
}

.slide-text-wrapper p, .slide-text-wrapper h1 {
    display: block;
}

.btn-banner {
    text-shadow: none;
    border-radius: 30px;
}

.service-box {
    display: block;

}

.service-box .box-line {
    min-height: 2px;
    height: 2px;
    width: 0;
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    background-color: var(--focus-color);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -o-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -moz-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    margin-left: auto;
    margin-right: auto;
}

.service-box:hover .box-line {
    width: 100%;
}

.service-box .box-caption {
    padding: 10px;
}

.service-more .service-head .head__bgcolor {
    display: inline-block;
    width: 5px;
    height: 20px;
}

.section-news {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-position: 50% 80%;
}

.news-item .box-line {
    min-height: 2px;
    height: 2px;
    width: 0;
    background-color: var(--focus-color);
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -o-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -moz-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
}

.news-item:hover .box-line {
    width: 100px;
}

.news-item .date {
    min-width: 80px;
    height: min-content;
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
}

.news-item:hover .date {
    background-color: var(--focus-color);
}

.news-item .date .year {
    color: var(--text-color-secondary);
}

.news-item .date .mday {
    color: #ffffff;
    font-size: 1.1rem;
}

.news-item .date span {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
}

.news-item:hover .date span {
    color: #ffffff;
}

.news-item .box-summary {
    color: var(--text-color-secondary);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
    .news-item .mdate {
        font-size: 14px;
        color: var(--text-color-secondary);
    }

    .news-item .box-summary {
        overflow: auto;
        text-overflow: unset;
        -webkit-line-clamp: none;
    }
}

@media (min-width: 992px) {
    .about-content {
        margin-left: -3rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        z-index: 80;
    }

    .about-content .content-wrapper {
        background: #FFFFFF;
        box-shadow: 0 2px 5px 1px rgba(111, 158, 188, .12), 0 5px 15px 6px rgba(74, 142, 254, .06);
        z-index: 100;
    }
}

@media (min-width: 1200px) {
    .about-content .content-wrapper {
        padding: 2rem 5rem;
    }
}


.about-content .content-wrapper {
    height: 100%;
    padding: 3rem;
}

.about-content .content-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

footer.footer-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: 100%;
}

.section-slider-inner .category-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.banner-about {
    background-position: 50% 100% !important;
}

.banner-service {
    background-position: 50% 30% !important;
}

.banner-cases {
    background-position: 50% 70% !important;
}


.section-slider-inner .category-head {
    color: #ffffff;
    z-index: 100;
}

.news-box {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -o-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -moz-transform: rotate(0deg) scale(1) translate(0%, 0%);
    -webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
}

.news-box:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    box-shadow: 0 2px 5px 1px rgba(111, 158, 188, .12), 0 5px 15px 6px rgba(74, 142, 254, .06);
}

.news-box .box-caption {
    padding: 1rem;
}

.news-box .box-caption h2.article-title {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    padding-top: 50px;
}

.news-box:hover .box-caption h2.article-title {
    padding-top: 30px;

}

.news-box .article-desc {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    margin-top: 25px;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color-secondary);
}

.news-box:hover .article-desc {
    margin-top: 15px;
    padding-bottom: 40px;
}

.news-box .news-list-line {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    margin: 0.5rem 0;
    height: 2px;
    min-height: 0px;
    width: 60px;
    background-color: var(--primary-color);
}

.news-box:hover .news-list-line {
    width: 90%;
    background-color: var(--focus-color);
}

.news-box .article-date {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
}

.news-box:hover .article-date {
    margin-left: 15px;
}

.video-box .thumb-box {
    position: relative;
}

.box-square {
    -webkit-transition: all .5s ease-out .1s;
    -o-transition: all .5s ease-out .1s;
    transition: all .5s ease-out .1s;
    background-color: transparent;
    width: 80px;
    height: 80px;
    right: -40px;
    bottom: -40px;
    -webkit-transform: rotate(45deg) scale(1) translate(0%, 0%);
    -ms-transform: rotate(45deg) scale(1) translate(0%, 0%);
    transform: rotate(45deg) scale(1) translate(0%, 0%);
}

.news-box:hover .box-square {
    background-color: var(--focus-color);
}

.contact—box .baidu_map {
    color: var(--text-color-secondary);
    font-size: 14px;
}

.contact—box i.bi {
    font-size: 42px;
}

.qrcode {
    width: 100px;
    height: 100px;
}

.footer-contact ul li {
    display: flex;
}

.footer-contact i.bi {
    min-width: 18px;
}

.footer-contact ul li span {
    min-width: 42px;
}

.article-foot .contact-info [class="col-md-*"] {
    border-left: 1px solid;
    border-color: rgba(204, 204, 204, 0.4);
}

.article-foot .contact-info [class="col-md-*"]:first-child {
    border: none;
}


.footer a:hover {
    color: var(--primary-color);
}

.footer .footer-top {
    margin-bottom: 2rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: initial;
}

.footer-links, .footer-links a,
.links, .links a,
.copyright, .copyright a,
.poweredby, .poweredby a {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.footer-sub-nav {
    list-style: none;
    padding-left: 0;
}

.footer-sub-nav li {
    margin-bottom: 0.5rem;
}

.copyright-wrapper {
    margin-top: 2rem;
    margin-bottom: -1rem;
}

.list-main-wrapper .article-list {
    border-bottom: 1px dashed #f2f2f2;
}


/*breadcrumb*/
.breadcrumb {
    display: flex;
    align-items: center;
}

.breadcrumb span.bi {
    font-size: 12px;
}

.breadcrumb .active {
    font-weight: 600;
}

/*article*/
.article .article-tit {
    font-size: 24px;
    font-weight: 600;
}

.article .article-sum {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.video-box .btn-play {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-box .btn-play i {
    color: #FFFFFF;
    font-size: 50px;
}

@media (max-width: 991.98px) {
    .section-slider-inner .category-banner .container {
        height: 180px;
    }

    .category-banner {
        position: relative;
    }

    .category-banner .category-head {
        width: 100%;
        text-align: center;
    }

    .category-banner .category-head h2 {
        font-size: 1.4rem;
    }

    .category-banner .category-head p {
        font-size: 14px;
        line-height: 1.3;
    }

    .breadcrumbs-wrapper ul > li {
        font-size: 12px;
    }

    .article .article-title {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .news-box .box-caption h2.article-title {
        padding-top: 20px;
    }

    .news-box:hover .box-caption h2.article-title {
        padding-top: 15px;

    }
}

@media (min-width: 992px) {
    .section-slider-inner .category-banner .container {
        height: 400px;
    }

    .news-box .thumb-box {
        height: 250px;
    }
}
