/*!
 * app.css for master
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-03-05-1:59 PM
 */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import "hero.css";

.img_white {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: brightness(0%) invert(100%);
    -webkit-filter: brightness(0%) invert(100%);
    mix-blend-mode: difference;
}

.trans_03 {
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.trans_05 {
    -moz-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}


.btn-default {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 0;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: var(--primary-color);
}

.btn-default:hover {
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 768px) {
    .btn-default {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.btn-link {
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--primary-color)
}

.btn-link:after {
    display: block;
    content: "";
    border-bottom: solid 2px var(--primary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 250ms ease-in-out;
    transition: -webkit-transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.btn-link:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;

}

.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1);
    animation-delay: calc(var(--animate-delay) * 1);
}

.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}

.bg-grad {
    background: linear-gradient(
            150deg, #F69B54 0%, #F15D42 100%);
}

.pagination .page-item .page-link {
    border-radius: 0;
    padding: 1rem 1.75rem;
    color: var(--primary-color);
}

.pagination .page-item .active .page-link {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary-color);;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    background-color: color-mix(in srgb, var(--nav-color), transparent 0%);
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
}


.header.header-scrolled {
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--title-color), transparent 90%);
}

.header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header .logo a {
    color: #0b2341;
}

.header .logo img {
    max-height: 80px;
}

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

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

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

.navbar > ul > li {
    position: relative;
    padding: 8px 0 8px 20px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    padding: 5px 2px;
}


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

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

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    left: 20px;
    height: 2px;
    bottom: 3px;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 40px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

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

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

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

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

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

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 50%;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.5s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 0;
    bottom: 15px;
    left: 0;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    padding: 0;
}

.navbar-mobile a, .navbar-mobile a:focus {
    text-align: right;
    padding: 10px 20px;
    font-size: 15px;
    color: #FFFFFF;
    border: none;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0 20px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
}

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

.navbar-mobile .dropdown ul a {
    padding: 5px 0;
    font-size: 14px;
}

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

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

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: var(--light-bg-color);
}

.section-dark {
    background-color: var(--dark-bg-color);
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-footer {
    padding-top: 30px;
}

.section-title h2, .section-title__v2 h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after, .section-title__v2 h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
}

.section-dark .section-title h2 {
    color: #FFFFFF;
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #aab3c7;
}

.section-title__v2 h2 {
    font-size: 24px;
}

.section-title__v2 h2::after {
    left: 0;
}

@media (max-width: 768px) {
    .section-title h2, .section-title__v2 h2 {
        font-size: 20px;
    }
}

/*!*--------------------------------------------------------------*/
/*# Slider Section*/
/*--------------------------------------------------------------*!*/
/*#slider {*/
/*    width: 100%;*/
/*    height: 50vh;*/
/*    background-color: rgba(63, 73, 83, 0.8);*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*}*/


/*#slider .carousel, #slider .carousel-inner, #slider .carousel-item, #slider .carousel-item::before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*}*/


/*#slider .carousel-item {*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    z-index: 0;*/
/*}*/

/*#slider .carousel-item:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    background-image: url("../img/mask.png");*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    z-index: 5;*/
/*}*/

/*#slider .carousel-container {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    top: 70px;*/
/*    left: 50px;*/
/*    right: 50px;*/
/*    z-index: 20;*/
/*}*/

/*#slider .container {*/
/*    text-align: center;*/
/*}*/

/*#slider h2 {*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    font-size: 50px;*/
/*    font-weight: 700;*/
/*}*/

/*#slider p {*/
/*    font-size: 22px;*/
/*    margin: 0 auto 30px auto;*/
/*    color: #fff;*/
/*}*/

/*#slider .carousel-inner .carousel-item {*/
/*    transition-property: opacity;*/
/*    background-position: center top;*/
/*}*/

/*#slider .carousel-inner .carousel-item,*/
/*#slider .carousel-inner .active.carousel-item-start,*/
/*#slider .carousel-inner .active.carousel-item-end {*/
/*    opacity: 0;*/
/*}*/

/*#slider .carousel-inner .active,*/
/*#slider .carousel-inner .carousel-item-next.carousel-item-start,*/
/*#slider .carousel-inner .carousel-item-prev.carousel-item-end {*/
/*    opacity: 1;*/
/*    transition: 0.5s;*/
/*}*/

/*#slider .carousel-inner .carousel-item-next,*/
/*#slider .carousel-inner .carousel-item-prev,*/
/*#slider .carousel-inner .active.carousel-item-start,*/
/*#slider .carousel-inner .active.carousel-item-end {*/
/*    left: 0;*/
/*    transform: translate3d(0, 0, 0);*/
/*}*/

/*#slider .carousel-control-next-icon, #slider .carousel-control-prev-icon {*/
/*    background: none;*/
/*    font-size: 48px;*/
/*    line-height: 1;*/
/*    width: auto;*/
/*    height: auto;*/
/*}*/

/*#slider .carousel-control-next-icon:hover, #slider .carousel-control-prev-icon:hover {*/
/*    color: rgba(255, 255, 255, 0.8);*/
/*}*/

/*#slider .carousel-indicators li {*/
/*    cursor: pointer;*/
/*    background: #fff;*/
/*    overflow: hidden;*/
/*    border: 0;*/
/*    width: 30px;*/
/*    height: 4px;*/
/*    opacity: .6;*/
/*    transition: 0.3s;*/
/*}*/

/*#slider .carousel-indicators li.active {*/
/*    opacity: 1;*/
/*    background: var(--primary-color);*/
/*}*/


/*@media (max-width: 992px) {*/
/*    #slider {*/
/*        height: 40vh;*/
/*    }*/

/*    #slider .carousel-container {*/
/*        top: 8px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    #slider h2 {*/
/*        font-size: 24px;*/
/*    }*/

/*    #slider p {*/
/*        font-size: 16px;*/
/*    }*/

/*    #slider .carousel-control-next-icon, #slider .carousel-control-prev-icon {*/
/*        font-size: 24px;*/
/*    }*/
/*}*/

/*@media (min-width: 1024px) {*/
/*    #slider .carousel-control-prev, #slider .carousel-control-next {*/
/*        width: 5%;*/
/*    }*/
/*}*/

/*@media (max-height: 500px) {*/
/*    #slider {*/
/*        height: 120vh;*/
/*    }*/
/*}*/

/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/
.brand .brand-box {
    position: relative;
    max-height: 200px;
    overflow: hidden;
}

.brand .brand-box:hover img {
    -webkit-transform: translateX(0) scale(1.2);
    transform: translateX(0) scale(1.2);
}

.brand .brand-box::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: -webkit-linear-gradient(left top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, .4));
    background: -o-linear-gradient(left top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, .4));
    background: -moz-linear-gradient(left top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, .4));
    z-index: 5;
}

.brand .brand-box .brand-info {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: auto;
    z-index: 10;
}

.brand .brand-box .brand-info h3 {
    font-size: 24px;
}

.brand .brand-box .brand-info p {
    color: var(--text-color-primary);
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product-category {
    position: relative;
    height: 300px;
    background-color: var(--light-bg-color);
    margin-bottom: 70px;
}

.product-category .info {
    position: absolute;
    display: block;
    padding: 30px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.product-category .info h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-category .info p {
    font-size: 14px;
    color: initial;
}

.product-category .icon {
    max-width: 60%;
    position: absolute;
    right: 0;
    bottom: -20px;
    z-index: 10;
}

.product-category:hover {
    background-color: var(--secondary-color);
}

.product-category:hover .icon {
    bottom: 0;
}

.product-category .more {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-top: 25px;
    height: 33px;
    line-height: 33px;
    transition: all 0.5s ease;
}

.product-category:hover .more {
    background: #ff7800;
    color: #fff;
    padding: 0 20px;
}


.section-navbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.section-navbar a {
    background: var(--light-bg-color);
    padding: 5px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.section-navbar a.active,
.section-navbar a:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/*--------------------------------------------------------------
# call to action
--------------------------------------------------------------*/
.cta {
    position: relative;
}

.cta::before {
    content: "";
    background: url(/assets/img/pattern/04.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.cta h2 {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.5;
    letter-spacing: .2rem;
}

.cta .btn-default {
    background-color: #FFFFFF;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.about .bg-grad {
    color: #FFFFFF;
}

.about .bg-grad span {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.about .bg-grad h3 {
    font-size: 20px;
    line-height: 1.6;
}

.about .about-detail h2 {
    font-size: 26px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about .bg-grad h3 {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 0 0 30px 0;
    color: var(--text-color-secondary);
    font-size: 14px;
    background: var(--dark-bg-color);
}

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

.footer .footer-top {
    padding: 60px 0 30px 0;
    border-bottom: 1px solid var(--bs-gray-dark);
}

.footer .footer-top h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

.footer .footer-top .footer-contact h4 {
    border-bottom: 1px solid var(--bs-gray-dark);
}

.footer .footer-top .footer-contact ul li {
    padding: 0 10px 10px 0;
    margin-bottom: 0;
    color: var(--text-color-secondary);
    list-style: none;
    display: inline-block;
}

.footer .footer-top .footer-contact ul li a {
    color: var(--text-color-secondary);
}

.footer .footer-top .footer-contact ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-contact ul i {
    padding-right: 2px;
    color: var(--text-color-secondary);
    font-size: 16px;
    line-height: 1;
}


.footer .footer-top .footer-links {
    margin-bottom: 30px;
}


.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--text-color-secondary);
    font-size: 18px;
    line-height: 1;
}

.footer .footer-top .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: var(--text-color-secondary);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.footer .footer-top .footer-qrcode {
    margin-bottom: 30px;
}

.footer .footer-top .footer-qrcode h3 {
    margin-bottom: 0.5rem;
    padding-bottom: 12px;
}

.footer .footer-top .footer-qrcode li {
    display: inline-block;
    max-width: 110px;
    overflow: hidden;
    text-align: center;

}

.footer .footer-top .footer-qrcode li:not(:last-child) {
    margin-right: 15px;
}


.footer .copyright {
    text-align: center;
    float: left;
    color: var(--text-color-secondary);
    font-size: 14px;
}

.footer .powerdy {
    float: right;
    text-align: center;
    font-size: 14px;
    color: var(--text-color-secondary);
}

.footer .powerdy a, .footer .copyright a {
    color: var(--text-color-secondary);
}

@media (max-width: 768px) {
    .footer .copyright, .footer .powerdy {
        float: none;
        text-align: center;
        padding: 5px 0;
    }
}


.footer .foot-main .foot-logo {
    max-width: 250px;

}

.footer .foot-main .foot-navbar li:not(:last-child):after {
    content: "/";
    display: inline-block;
    padding-right: 10px;
}


.footer .foot-main .foot-navbar a {
    color: var(--text-color-secondary);
    font-size: 18px;
    padding-right: 10px;
}

/*--------------------------------------------------------------
# banner-inner
--------------------------------------------------------------*/
.banner-inner {
    height: 30vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.banner-inner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("../img/mask.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 5;
}

.page-nav {
    background-color: var(--dark-bg-color);
    color: var(--text-color-secondary);
    padding: 0;
    height: 55px;
}

.page-nav a {
    color: var(--text-color-secondary);
    line-height: 55px;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb a.home {
    padding: 0 20px;
    display: inline-flex;
    background-color: var(--bs-gray-dark);
    margin-right: 20px;
}

.breadcrumb .home i {
    font-size: 30px;
    line-height: 50px;
}

.breadcrumb .current {
    color: var(--primary-color);
}

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

.navbar-inner a {
    color: #FFFFFF;
    display: inline-block;
    padding: 0 15px;
}

.navbar-inner a:hover, .navbar-inner a.current {
    color: var(--primary-color);
    background-color: var(--bs-gray-dark);
}


.icon_boxs {
    padding: 20px;
    position: relative;
}


.icon_boxs:hover {
    -webkit-box-shadow: 0 10px 40px 0 rgb(119 135 147 / 15%);
    box-shadow: 0 10px 40px 0 rgb(119 135 147 / 15%);
}

.icon_boxs:before {
    content: '';
    position: absolute;
    border-bottom: 2px solid var(--primary-color);
    left: 0;
    right: 100%;
    bottom: 0;
    top: auto;
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.icon_boxs:hover:before {
    right: 0;
}

.icon_boxs .icon {
    font-size: 30px;
    line-height: 24px;
    padding: 20px;
    margin-left: 5px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 4px 14px rgb(0 0 0 / 5%);
    box-shadow: 0 4px 14px rgb(0 0 0 / 5%);
    border-radius: 50%;
    display: inline-block;
    color: var(--primary-color);
}

.icon_boxs:hover .icon {
    cursor: pointer;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.icon_boxs h3 {
    font-size: 20px;
}


.product-box {
    position: relative;
    background-color: #f8f8f8;
    margin-top: 45px;
}

.product-box:hover {
    box-shadow: 2px 2px 15px rgb(0 0 0 / 20%);
}

.product-box:before {
    content: '';
    position: absolute;
    border-bottom: 2px solid var(--primary-color);
    left: 0;
    right: 100%;
    bottom: 0;
    top: auto;
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.product-box:hover:before {
    right: 0;
}

.product-box .p-detail {
    padding: 15px 15px 20px;
    position: relative;
}

.product-box .p-detail h4 {
    font-size: 16px;
    text-align: center;
    padding: 0.5rem 0;
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    border-bottom: 1px solid var(--light-bg-color);
}

.product-box .p-detail p {
    font-size: 14px;
    margin-bottom: 0;
    min-height: 68px;
    overflow: hidden;
    color: var(--text-color-secondary);
}

.product-description {
    padding-top: 50px;
}

.product-description h2 {
    font-size: 28px;
    margin-bottom: 1rem;
}

.product-btn {
    padding-top: 30px;
    margin-bottom: 1rem;
}

.prod-img {
    max-width: 450px;
    height: auto;
}

.article-nav {
    padding: 0;
    margin: 60px 0 30px 0;
    height: 55px;
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.article-nav ul li {
    display: inline-block;
    padding: 0 20px;
}

.article-nav ul li:first-child {
    padding-left: 0;
}

.article-nav ul li a {
    line-height: 55px;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    display: block;
}

.article-nav ul li a:before {
    content: '';
    position: absolute;
    display: inline-block;
    left: 0;
    bottom: 0;
    top: auto;
    right: 100%;
    border-bottom: 3px solid #FFFFFF;
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;

}

.article-nav ul li a:hover:before {
    right: 0;
}

.list-nav {
    height: 55px;
}

.list-nav .dropdown-toggle {
    height: 100%;
    padding: 0 20px;
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.list-nav ul.dropdown-menu {
    background-color: var(--dark-bg-color);
    margin-top: -2px !important;
    min-width: 152px;
    border-top: 0;
    border-radius: 0;
    padding: 0;
}

.list-nav .dropdown-item {
    border-top: 1px solid var(--bs-gray-dark);
    text-align: center;
    line-height: 45px;
}

.article-box {
    background-color: #f8f8f8;
    margin-bottom: 30px;
}

.article-box:hover {
    box-shadow: 2px 2px 15px rgb(0 0 0 / 20%);
}

.article-description {
    padding: 30px;
}

.article-description h2 {
    margin: 0.5rem 0;
    font-size: 22px;
    color: var(--primary-color);
}

.article-description p, .article-description .date {
    color: var(--text-color-primary);
}

.article-description .more {
    display: inline-block;
    font-size: 14px;
    color: #666;
    height: 33px;
    line-height: 33px;
    transition: all 0.5s ease;
}

.article-description:hover .more {
    background: #ff7800;
    color: #fff;
    padding: 0 20px;
}

.article .article-body ul {
    padding-left: 2rem;
}

.article .article-body img {
    max-width: 100%;
    height: auto;
}

.article .article-title {
    border-bottom: 1px solid var(--light-bg-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.article .article-title h2 {
    font-size: 22px;
    text-align: center;
}

.article .section-body img {
    max-width: 100% !important;
    height: auto;
}

.article-footer {
    border-top: 1px solid var(--light-bg-color);
    padding-top: 20px;
    margin-top: 20px;
}

.article-prev-next {
    font-size: 14px;
    color: var(--text-color-primary);
}

.article-prev-next a {
    color: var(--text-color-primary);
}

.article-prev-next a:hover {
    color: var(--primary-color);
}

.article-prev-next span {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# 联系我们
--------------------------------------------------------------*/
.contact-list article p {
    margin-bottom: 0
}

.maps {
    padding: 0;
}

#baidu-maps {
    height: 40vh;
}

.maps-detail {
    padding: 0 20px;
}

.maps-detail h4 {
    font-size: 18px;
    color: var(--title-color);
}

.maps-detail p {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: var(--primary-color);
    float: left;
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color-primary)
}

.contact .info a {
    color: var(--text-color-primary)
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: var(--primary-color);
    color: #fff;
}

.contact-inner-lightbox h4 {
    margin: 10px 0;
}

.contact-inner-lightbox ul {
    margin: 20px 0;
}

.contact-inner-lightbox ul li {
    padding: 3px 0;
}

.contact-inner-lightbox .qrcode {
    margin: 20px 0;
    max-width: 180px;
}

@media (min-width: 992px) {
    .contact-inner-lightbox .qrcode {
        margin: 20px;
    }
}
