/*!
Theme Name: Tooli
Author: Hunk
Author URI: https://www.imhunk.com/
Version: 1.1
Requires PHP: 7.0
*/



@font-face {
    font-family: 'Rubik';
    src: url('font/Rubik-Bold.woff2') format('woff2'),
         url('font/Rubik-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




@font-face {
    font-family: 'Rubik';
    src: url('font/Rubik-Regular.woff2') format('woff2'),
         url('font/Rubik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html {
  font-size: 62.5%;

  line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem; /* 等于 1.6rem */
  line-height: 1.5;
  color: #333;

   font-family: 'Rubik', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 1rem = 9px */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 50%; /* 1rem = 8px */
  }
}

/*------------------------ css grid -----------------------*/


 :root {
            --max-width: 120rem;   /* 1200px -> 120rem */
            --gutter: 2rem;        /* 20px -> 2rem */
        }

.section {
            width: 100%;
            position: relative;
            padding: 3rem 0; /* 默认垂直内边距 */
        }

        /* 全屏控制工具类 */
        .Hunk-full-width {
           
            display: grid;
            place-items: center; /* 垂直水平完美居中 Hunk-content-grid */
            padding: 0;
        }

        /* --- 结构层 2: Hunk-content-grid (合并了 Container 和 Row) --- */
        .Hunk-content-grid {
            /* 容器功能：居中 + 最大宽度限制 */
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 calc(var(--gutter) / 2);

            /* 网格功能：定义 12 列网格 */
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: var(--gutter);
            width: 100%;
            margin-bottom: 5rem;
        }
        
        /* --- 结构层 3: 列 (Col) - 响应式定义 --- */

     [class*="col-"] {
    grid-column: span 12; /* 默认移动端堆叠 */

  
}

/* sm ≥576px */
@media (min-width: 576px) {
    .col-1 { grid-column: span 6; }
    .col-2 { grid-column: span 6; }
    .col-3 { grid-column: span 6; }
    .col-4 { grid-column: span 6; }
    .col-5 { grid-column: span 6; }
    .col-6 { grid-column: span 6; }
    .col-7 { grid-column: span 6; }
    .col-8 { grid-column: span 12; }
    .col-9 { grid-column: span 12; }
    .col-10 { grid-column: span 12; }
    .col-11 { grid-column: span 12; }
    .col-12 { grid-column: span 12; }
}

/* md ≥768px */
@media (min-width: 768px) {
    .col-1 { grid-column: span 4; }
    .col-2 { grid-column: span 4; }
    .col-3 { grid-column: span 6; }
    .col-4 { grid-column: span 6; }
    .col-5 { grid-column: span 6; }
    .col-6 { grid-column: span 6; }
    .col-7 { grid-column: span 12; }
    .col-8 { grid-column: span 12; }
    .col-9 { grid-column: span 12; }
    .col-10 { grid-column: span 12; }
    .col-11 { grid-column: span 12; }
    .col-12 { grid-column: span 12; }
}

/* lg ≥992px */
@media (min-width: 992px) {
    .col-1 { grid-column: span 3; }
    .col-2 { grid-column: span 3; }
    .col-3 { grid-column: span 3; }
    .col-4 { grid-column: span 4; }
    .col-5 { grid-column: span 4; }
    .col-6 { grid-column: span 6; }
    .col-7 { grid-column: span 6; }
    .col-8 { grid-column: span 6; }
    .col-9 { grid-column: span 6; }
    .col-10 { grid-column: span 12; }
    .col-11 { grid-column: span 12; }
    .col-12 { grid-column: span 12; }
}

/* xl ≥1200px */
@media (min-width: 1200px) {
    .col-1 { grid-column: span 1; }
    .col-2 { grid-column: span 2; }
    .col-3 { grid-column: span 3; }
    .col-4 { grid-column: span 4; }
    .col-5 { grid-column: span 5; }
    .col-6 { grid-column: span 6; }
    .col-7 { grid-column: span 7; }
    .col-8 { grid-column: span 8; }
    .col-9 { grid-column: span 9; }
    .col-10 { grid-column: span 10; }
    .col-11 { grid-column: span 11; }
    .col-12 { grid-column: span 12; }
}


        /* --- 排序 (Order) 工具类 --- */
        .order-1 { order: 1; } .order-2 { order: 2; }
        .order-first { order: -1; } .order-last { order: 99; }


         @media (max-width:992px ){


            .order-sm-1{order:1;}

            .order-sm-2{order:2;}

        }


        /* --- 桌面端/平板 (断点 > 768px -> 76.8rem) --- */
        @media (min-width: 768px) {
      
            .offset-1 { grid-column-start: 2; } .offset-3 { grid-column-start: 4; } .offset-6 { grid-column-start: 7; }

            /* 桌面端排序覆盖 (.order-md-N) */
            .order-md-1 { order: 1; }
            .order-md-2 { order: 2; }
            .order-md-first { order: -1; } 
            .order-md-last { order: 99; }  
        }

        /* =================================================================
           2. 演示用样式 (Demo Styles)
           ================================================================= */
        .content-box {
            padding: 3rem; 
            border-radius: 0.6rem; 
            height: 100%;
            box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.1);
            background-color: white;
            text-align: center;
        }
        .image-placeholder {
            min-height: 20rem; 
            background: linear-gradient(45deg, #a7e2ff, #2979ff);
            border-radius: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem; 
        }


/*--------------------------- header ------------------*/

   

        .Hunk-logo {
            font-size: 24px;
            font-weight: bold;
            color: #f48529;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            margin: 5rem 0 1rem 1.5rem;
        }


        .menu-open, .menu-open .Hunk-menu-toggle{background-color: #eee!important;}

        .Hunk-logo-icon {
            font-size: 28px;
        }

    

        /* Sidebar Styles */
        .Hunk-sidebar {
            width: 230px;
            background:#fff;
            color: #333;
            transition: all 0.3s ease;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
            position: sticky;
            height: 100vh;
            top: 0;

        }

        /* General Icon Styling */
        .header-icon {
            width: 24px;
            height: 24px;
            fill: #333; /* Inherit color from parent */
            transition: fill 0.3s ease;
        }
        
        .Hunk-menu-toggle {
            display: none;
            padding: 15px 20px; 
            background: #fff;
            color: #333;
            cursor: pointer;
            font-size: 24px;
            text-align: center;
            align-items: center;
            gap: 10px;

        }

        .Hunk-menu-toggle:hover {
           
        }
        
        .Hunk-main-menu {
            list-style: none;
            padding: 20px 0;
        }

        .Hunk-main-menu li{margin-bottom: 0;}

        .Hunk-menu-item {
            position: relative;
        }

        .Hunk-menu-item > a {
            display: block;
            padding: 1rem 1.5rem;
            color: #333;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .Hunk-menu-item > a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left: 4px solid #f48529;
            padding-left: 30px;
        }

        /* Desktop indicator for items with submenus - SVG arrow replaces Unicode */
      .Hunk-menu-item.has-submenu > a {
    display:flex;
    align-items:center; /* ← 关键！垂直置中 */
    justify-content:space-between;
}
.Hunk-menu-item.has-submenu > a:after {
    content:'';
    width:15px;
    height:15px;
    flex-shrink:0;
    background-repeat:no-repeat;
    background-position:center;
    background-size:15px;
    transition:transform .3s ease;
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="%23bdc3c7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 6 15 12 9 18"/></svg>');
}
.Hunk-menu-item.has-submenu:hover > a:after {
    transform:rotate(90deg);
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="%23f48529" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 6 15 12 9 18"/></svg>');
}


.current-menu-item{color: #f48529!important;}

        /* Hide the mobile toggle on desktop */
        .mobile-submenu-toggle {
            display: none;
        }

        /* Mega Menu Styles */
        .Hunk-mega-menu {
            position: absolute;
            left: 100%;
            top: -165px;
            width: 1250px;
            background: white;
            color: #333;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 0 5px 5px 5px;
            padding: 25px;
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem 4rem;
            z-index: 1000;
        }

        .Hunk-menu-item:hover .Hunk-mega-menu {
            display: grid;
        }

        .Hunk-mega-menu-column h3 {
      
            margin:0 0 1rem 0;
         
     
            font-size: 1.6rem;
        }

        .Hunk-mega-menu-column img{margin-bottom: 1rem;}

        .Hunk-mega-menu-column a {
            display: block;
            padding: 1px;
            color: #555;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .Hunk-mega-menu-column>a{font-size: 1.4rem;}

        .Hunk-mega-menu-column a:hover {
            color: #f48529;
            padding-left: 5px;
        }

        /* Desktop Search Styles */
        .Hunk-search-container {
            position: relative;
            margin: 0px 25px;
            color: #ecf0f1;
        }

        .Hunk-search-container:hover .search-icon{ background-color:#f6f6f6; }

        .search-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .search-icon .header-icon {
            width: 20px;
            height: 20px;
        }

        .search-icon:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .search-box {
            position: absolute;
            left: 100%;
            top: 0;
            max-width: 400px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            display: none;
            z-index: 1001;
        }

        .Hunk-search-container:hover .search-box {
            display: block;
        }

        .search-box input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .search-box input:focus {
            outline: none;
            border-color: #f48529;
        }

        /* Content Area Styles */
        .Hunk-main-content {
            flex: 1 1 0;
            padding: 0px;
            
        }

        .content-header {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        .content-header h1 {
            color: #2c3e50;
            font-size: 28px;
        }

        .content-body {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .card h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .card p {
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 600px){

        .Hunk-logo img{width: 107px;height: 30px;display: block;}

        .Hunk-logo{align-items: center;}



        }

        @media (max-width: 992px) {


            body{flex-direction: column;}


            .Hunk-logo{padding: 0;margin: 0;}

            .hide-in-mobile{display: none;}
      
            
            .Hunk-sidebar {
                top: 0;
                width: 100%;
                height: auto;
                position: sticky;
            }
            
            .Hunk-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            .Hunk-mobile-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: #fff;
            }

            /* FIX: Icon Transition Logic - Now relies on .Hunk-mobile-header.menu-open */
            .Hunk-menu-toggle .Hunk-icon-wrapper {
                position: relative;
                width: 24px;
                height: 24px;
            }
            
            .Hunk-menu-toggle .Hunk-close-icon {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0; /* Hide 'X' icon initially */
                transition: opacity 0.3s ease;
            }
            
            .Hunk-menu-toggle .Hunk-menu-icon {
                opacity: 1; /* Show menu icon initially */
                transition: opacity 0.3s ease;
                vertical-align: top;
            }
            
            /* When the mobile menu is open (Hunk-mobile-header has the class) */
            .Hunk-mobile-header.menu-open .Hunk-menu-icon {
                opacity: 0; /* Hide menu icon */
            }
            
            .Hunk-mobile-header.menu-open .Hunk-close-icon {
                opacity: 1; /* Show 'X' icon */
            }
            
            .mobile-search-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                padding:15px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: 18px;
                color: white;
            }
            
            .mobile-search-icon .header-icon {
                width: 20px;
                height: 20px;
            }

            .mobile-search-icon:hover {
                background: #f6f6f6;
            }

            .mobile-search-icon svg{

                transition: all .3s;


            }

            .mobile-search-icon:hover svg{

                transform: scale(1.2);
                transition: all .3s;


            }
            
            .Hunk-mobile-search-box {
                padding: 15px;
                background: #fff;
                display: none;
            }
            
            .Hunk-mobile-search-box.active {
                display: block;
            }
            
            .Hunk-mobile-search-box input {
                width: 100%;
                padding: 10px;
                border: 1px solid #999;
                border-radius: 4px;
                font-size: 14px;
             
                color: #555;
            }
            
            .Hunk-mobile-search-box input:focus {
                outline: none;
                border-color: #f48529;
            }
            
            .Hunk-mobile-search-box input::placeholder {
                color: #bdc3c7;
            }
            
            .Hunk-main-menu {
                display: none;
                padding: 0;
            }
            
            .Hunk-main-menu.active {
                display: block;
            }
            
            .Hunk-search-container {
                display: none;
            }
            
            .Hunk-mega-menu {
                position: static;
                width: 100%;
                display: none;
                grid-template-columns: 1fr;
                box-shadow: none;
                border-radius: 0;
                padding: 30px;
                background: #f6f6f6;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                color: #333;
                
            }
            
            .Hunk-menu-item:hover .Hunk-mega-menu {
                display: none;
            }
            
            .Hunk-menu-item.active .Hunk-mega-menu {
                display: grid;
                max-height: 100%;

            }
            
            .Hunk-menu-item > a {
                border-left: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                position: relative;
                padding-right: 20px; 
                padding-left: 20px;
            }
            
            .Hunk-menu-item.has-submenu > a:after {
                display: none;
            }
            
           .mobile-submenu-toggle {
    position:relative;
    display:flex;
    align-items:center; /* ← 完美垂直对齐 */
    padding-right:32px; /* 给箭头预留空间 */
}

.mobile-submenu-toggle::before {
    content:'';
    position:absolute;
    right:12px;
    width:14px;
    height:14px;
    background-size:14px;
    background-repeat:no-repeat;
    background-position:center;
    transition:.3s ease;
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23bdc3c7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 6 15 12 9 18"/></svg>');
}

.Hunk-menu-item.has-submenu.active .mobile-submenu-toggle::before {
    transform:rotate(90deg);
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%233498db" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 6 15 12 9 18"/></svg>');
}

            
            .Hunk-menu-item > a:hover {
                border-left: none;
                padding-left: 25px;
            }
            
            .Hunk-mega-menu-column h3 {
                color: #333;
                
            }
            
            .Hunk-mega-menu-column a {
                color: #555;
            }
            
            .Hunk-mega-menu-column a:hover {
                color: #f48529;
            }
        }
        
        /* --- DESKTOP HIDE (Screen > 992px) --- */
        @media (min-width: 993px) {


            .Hunk-mobile-header,
            .Hunk-mobile-search-box {
                display: none !important; 
            }
        }


        @media (max-width: 576px) {
            .content-body {
                grid-template-columns: 1fr;
            }
            
            .Hunk-main-content {
                padding: 20px 15px;
            }
            
            .Hunk-mega-menu {
                grid-template-columns: 1fr;
            }
        }

/*------------------------------- homepage ------------------------------*/


.home h1{font-size: 5rem;}


.Hunk-hero-banner{


        position: relative;
    width: 100%;
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.Hunk-hero-banner h1{color: #fff;}

.Hunk-hero-banner p{margin-bottom: 3rem;}


.Hunk-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.Hunk-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 15s 
ease-in-out infinite alternate;
}


.Hunk-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}



.Hunk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;
}


.rollIn h1, .rollIn p, .rollIn .cta-button {
            opacity: 0;
            transform: translateX(-100%) rotate(-120deg);
            animation: rollIn 1s ease-out forwards;
        }
        
        .rollIn h1 { animation-delay: 0.3s; }
        .rollIn p { animation-delay: 0.5s; }
        .rollIn .cta-button { animation-delay: 0.7s; }
        
    @keyframes rollIn {
            0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
            100% { opacity: 1; transform: translateX(0) rotate(0); }
        }





.Hunk-feature-list {
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.Hunk-feature-list div::before {
  content: "\2713";
  margin-right: 5px;
  color: #f48529;   /* 对号颜色，可自行调整 */
  font-weight: bold;
}



/*------------------------------------ product categories ------------*/


     .Hunk-vertical-slider .car-slider-desc {
            max-width: 180px;
            margin: 0 auto;
        }
        
        /* ✨ Flexbox 布局控制 ✨ */
        .Hunk-vertical-slider {
            display: flex; 
            width: 100%; 
        }
        
        /* Desktop View (Flex Layout) */
        .Hunk-vertical-slider .Hunk-slider-content {
            flex-grow: 1; 
            flex-shrink: 0; 
            flex-basis: 84%; 
            max-width: 84%;
            padding-right: 25px;
            width: 100%; 
        }
        .Hunk-vertical-slider .Hunk-slider-navs {
            flex-grow: 0; 
            flex-shrink: 0; 
            flex-basis: 16%; 
            max-width: 16%;
            width: 100%;
            height: 610px;
            overflow-y: auto; 
            overflow-x: hidden;
            padding: 0;
            position: relative;
            scroll-behavior: smooth;
            display: flex;
            flex-direction: column; 
        }

        /* Main Slider Display Logic */
        .Hunk-slider-content .Hunk-slider-banner {
            height: 610px; 
            display: none; 
            flex-direction: column; 
            align-items: flex-start; 
            padding: 0px; 
            box-sizing: border-box; 
            
            /* ✨ 动画初始状态：透明且稍微向上偏移 ✨ */
            opacity: 0;
            transform: translateY(-20px);
        }
        .Hunk-slider-content .Hunk-slider-banner.active {
            display: flex; 
            /* ✨ 动画应用：从上而下加载 ✨ */
            animation: slideInFromTop 0.8s ease-out forwards;
            /* forwards 保持动画结束时的状态 */
        }
        
        /* ✨ 定义从上而下加载动画 ✨ */
        @keyframes slideInFromTop {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .Hunk-slider-banner .Hunk-slider-image {
            width: 100%; 
            height: 400px; 
            overflow: hidden; 
           
        }
        .Hunk-slider-banner .Hunk-slider-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
        }

        .Hunk-slider-banner h3 {
            font-size: 24px;
            font-weight: bold;
            margin:1.5rem 0;
            color: #333;
        }
        .Hunk-slider-banner p.description {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }
        .Hunk-slider-banner .action-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #196DB6;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .Hunk-slider-banner .action-button:hover {
            background-color: #145a9e;
        }

        /* Thumbnail Styling */

        .Hunk-slider-navs .Hunk-slider-nav {
            text-align: center;
            flex-shrink: 0;
            padding-bottom: 15px;
            cursor: pointer;
        }
        .Hunk-slider-navs .Hunk-slider-nav .Hunk-nav-img {
            max-width: 178px;
            height: 110px;
            margin: 0 auto;
            border: 1px solid #EBEBEB;
            overflow: hidden;
        }
        .Hunk-slider-navs .Hunk-slider-nav .Hunk-nav-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .Hunk-slider-navs .Hunk-slider-nav span {
            font-size: 14px;
            display: block;
            padding: 5px 0 0;
        }

        /* Active Thumbnail State */
        .Hunk-slider-navs .Hunk-slider-nav.slick-current .Hunk-nav-img {
            border: 2px solid #196DB6; 
        }
        .Hunk-slider-navs .Hunk-slider-nav.slick-current span {
            color: #196DB6;
        }
        
        /* 移除箭头的相关 CSS 样式 */
        .custom-arrow, .custom-prev, .custom-next {
            display: none !important;
        }

        /* --- Media Queries (Responsive) --- */

        @media screen and (max-width : 991px) {
            .Hunk-vertical-slider {
                flex-direction: column; 
                overflow-y: hidden;
            }
            
            .Hunk-vertical-slider .Hunk-slider-content,
            .Hunk-vertical-slider .Hunk-slider-navs {
                max-width: 100%;
                flex-basis: auto; 
            }
            .Hunk-vertical-slider .Hunk-slider-content {
                padding-right: 0;
                padding: 0; 
            }
            
            /* Horizontal thumbnail styles for tablet/mobile */
            .Hunk-vertical-slider .Hunk-slider-navs {
                height: auto;
                overflow-x: auto; 
                overflow-y: hidden;
                white-space: nowrap; 
                padding: 10px 0;
                flex-direction: row; 
                display: block;
            }
            .Hunk-slider-content .Hunk-slider-banner {
                height: auto; 
            }
            .Hunk-slider-banner .Hunk-slider-image {
                height: 300px; 
            }

            .Hunk-slider-navs .Hunk-slider-nav {
                padding: 0px 5px;
                min-width: 75px;
                display: inline-block; 
                float: none; 
            }
            .Hunk-slider-navs .Hunk-slider-nav span {
                padding: 5px 0;
            }
            .Hunk-slider-navs .Hunk-slider-nav .Hunk-nav-img {
                margin: 0;
            }
        }

        @media screen and (max-width : 767px) {
            .Hunk-slider-banner h3 {
                font-size: 20px;
            }
            .Hunk-slider-banner p.description {
                font-size: 14px;
            }
            .Hunk-slider-banner .Hunk-slider-image {
                height: 250px;
            }
           .Hunk-slider-navs.thumb-image {
                padding: 0px;
                margin: 10px 0px 0;
            }
            .Hunk-slider-navs .Hunk-slider-nav .Hunk-nav-img {
                max-width: 140px;
                height: 80px;
            }
            .Hunk-slider-navs .Hunk-slider-nav span {
                font-size: 12px;
                white-space: normal;
            }
        }

        @media screen and (max-width: 580px) {
            .Hunk-slider-banner .Hunk-slider-image {
                height: 200px;
            }
        }

        @media screen and (max-width : 480px) {
            .Hunk-slider-banner .Hunk-slider-image {
                height: 180px;
            }
            .Hunk-slider-banner h3 {
                font-size: 18px;
            }
            .Hunk-slider-banner p.description {
                font-size: 13px;
            }
            .Hunk-slider-banner .action-button {
                padding: 8px 15px;
                font-size: 13px;
            }
        }


       .Hunk-sub-category-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    list-style: none;
    padding-left: 0;
}

.Hunk-sub-category-list a{color: #333;}
.Hunk-sub-category-list a:before{

    content: '\2192';

}

/*----------------------- home about section ------------------------*/


.about-images {
    position: relative;
    padding-left: 120px;
    padding-bottom: 125px;
}

.about-images:before{



        content: "";
    position: absolute;
    left: -35px;
    top: 65px;
    height: 520px;
    width: 520px;
    background-color: #f6f6f6;
    border-radius: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;

}
 .main-image {
            position: relative;
            margin-bottom: 20px;
        }
        
        .secondary-image {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60%;
        }


        /* 播放按钮样式 */
        .Hunk-btn-play {
            position: relative;
            display: inline-block;
            box-sizing: content-box;
            width: 36px;
            height: 46px;
            border-radius: 100%;
            border: none;
            outline: none !important;
            padding: 1.8rem 20px 20px 28px;
            background: var(--primary);
            cursor: pointer;
            transition: transform 0.2s;
            vertical-align: middle;
        }
        
        .Hunk-btn-play:hover {
            transform: scale(1.05);
        }
        
        .Hunk-btn-play:active {
            transform: scale(0.95);
        }
        
  
       .Hunk-btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 9px;
    border-left: 1.2rem solid #FFFFFF;
    border-top: 0.6rem solid transparent;  /* 高度为底边的一半 */
    border-bottom: 0.6rem solid transparent; /* 高度为底边的一半 */
}
        
        
        .Hunk-btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 50px;
            height: 50px;
            background: #ff0000;
            border-radius: 100%;
            animation: Hunk-pulse-border 1500ms ease-out infinite;
        }
        
        .Hunk-btn-play:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 50px;
            height: 50px;
            background: #ff0000;
            border-radius: 100%;
            transition: all 200ms;
        }
        
        @keyframes Hunk-pulse-border {
            0% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
                opacity: 0;
            }
        }
        
        /* 弹窗样式 */
        .Hunk-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .Hunk-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .Hunk-modal-content {
            position: relative;
            width: 90%;
            max-width: 800px;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .Hunk-modal.active .Hunk-modal-content {
            transform: scale(1);
        }
        
        .Hunk-modal-video {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 宽高比 */
            position: relative;
        }
        
        .Hunk-modal-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .Hunk-close-modal {
            position: absolute;
            top: 10px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: color 0.2s;
        }
        
        .Hunk-close-modal:hover {
            color: var(--primary);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .Hunk-modal-content {
                width: 95%;
            }
        }

        .Hunk-about-image {
            position: relative;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
        }
        
        .Hunk-bg-image {
            width: 100%;
            height: auto;
            display: block;
            z-index: 0;
        }
        
        .Hunk-left-section, .Hunk-right-section {
           
            
            width: 100%;
    
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            
            z-index: 1;
        }
        
   
        
        .Hunk-action-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #333;
            padding: 1.5rem 30px;
            font-size: 1.8rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 4px 1.5rem rgba(0, 0, 0, 0.1);
        }
        
        .Hunk-action-btn:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
        }
        
        .Hunk-action-btn:active {
            transform: translateY(0);
        }
        
        .Hunk-text-background {
           
            border-radius: 10px;
            padding: 25px;
           
            max-width: 100%;
        }
        
    
        
        /* 响应式设计 */
        @media (max-width: 768px) {

            .Hunk-custom-process{


                gap:0px!important;
            }

            .Hunk-text-background{

                padding: 0;
                box-shadow: none;


            }
            .Hunk-about-image {
                flex-direction: column;
            }
            
            .Hunk-left-section, .Hunk-right-section {
                position: relative;
                width: 100%;
                padding: 20px 0;
            }
            
           
        }


/*---------------- button --------------*/


.hover-shine-and-extend {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.hover-shine-and-extend .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hover-shine-and-extend:hover .icon {
    transform: translateX(4px);
}

/* Shine 动画 */
.hover-shine-and-extend::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.hover-shine-and-extend:hover::before {
    animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
    0% { left: -100px; }
    60% { left: 100%; }
    100% { left: 100%; }
}

/* Hover 效果 */
.hover-shine-and-extend:hover {
    color: #fff;
    transform: scale(1.06);
    border-color: #ffffffaa;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}


.hover-shine-and-extend.orange {
    background: linear-gradient(135deg, #ff9a4d, #ff6e1e);
}




  .Hunk-countups {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 0px;
  
    margin: 0 auto;
    margin-bottom: 3rem;
  }

  .Hunk-countups .Hunk-countup {
   
    padding: 20px;
    border-radius: 10px;
  
    flex: 1;

    border-color: rgba(0, 0, 0, 0.03) !important;
    border:1px solid;

  }

  .Hunk-countups .Hunk-countup .count {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #2a2a2a;
  }

  .Hunk-countups .Hunk-countup p {
    margin:1rem 0;
 
    color: #555;
  }

  .numbers {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .count {
    margin-right: 1rem;
  }

/*----------------------------- Featured products ------------------*/

    /* 核心容器样式 */
    .Hunk-cube-box {
      position: relative;
      display: inline-block;
      max-width: 100%; /* 限制宽度 */
      background-color: transparent;
      perspective: 50em; /* 3D 视距 */
      cursor: pointer;
    }

    /* 图片与遮罩层的公共过渡属性 */
    .Hunk-cube-box img,
    .Hunk-cube-box figcaption {
      width: 100%;
      height: 100%;
      display: block;
      transition: all 0.35s ease;
      backface-visibility: hidden; /* 隐藏背面，防止闪烁 */
    }

    /* 图片样式 */
    .Hunk-cube-box img {
      transition-delay: 0.05s; /* 图片稍晚一点消失 */
    }

    /* 文字遮罩层样式 (初始隐藏状态) */
    .Hunk-cube-box figcaption {
      position: absolute;
      top: 0;
      left: 0;
      background-color: #f48529;
      color: #fff;
      padding: 30px;
      box-sizing: border-box;
      opacity: 0;
      /* 核心 3D 初始位置：向左平移50%并旋转90度 */
      transform: translateX(-50%) rotateY(-90deg);
    }

    .Hunk-cube-box h3 {
      margin: 0 0 10px;
      font-size: 1.4em;
    }

    .Hunk-cube-box p {
      margin: 0;
      font-size: 0.9em;
      line-height: 1.5;
    }

    /* 全覆盖链接 (可选) */
    .Hunk-cube-box > a {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 10;
    }

    /* --- Hover 交互效果 --- */

    /* 鼠标移入：图片向右翻转隐藏 */
    .Hunk-cube-box:hover img {
      transform: translateX(50%) rotateY(90deg);
      opacity: 0;
      transition-delay: 0s;
    }

    /* 鼠标移入：文字遮罩层归位显示 */
    .Hunk-cube-box:hover figcaption {
      transform: translateX(0) rotateY(0deg);
      opacity: 1;
      transition-delay: 0.05s;
    }



/*------------- capability---------------*/


.Hunk-cap-content{


    display: flex;

    align-items: center;

    flex-direction: column;

    height: 100%;

    
    justify-content: center;
}
    

/*------------ content box  -------*/


      .content-box-16 {
            position: relative;
           
            padding: 20px;
            text-align: center;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            height: 100%;
        }


        .pulse-hover:hover {
  animation: pulse 1s infinite;
  background: #f6f6f6;

}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244, 133, 41, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(244, 133, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 133, 41, 0); }
}


     
        /* 图片容器 */
        .content-box-16 img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            margin-bottom: 1.5rem;
      
            position: relative; /* 让 z-index 生效 */
            z-index: 1;
        }

        /* 标题和描述 */
        .content-box-16 h3,
        .content-box-16 .description {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .content-box-16 h3 {
           
           
            margin-bottom: 8px;
        }

        .content-box-16 .description {
            font-size: 1.4rem;
            color: #666;
        }




/* === Hunk Custom Process Section === */
.Hunk-custom-process {
  display: flex;          /* 激活 Flex 布局 */
    flex-wrap: wrap;        /* 自动换行 */
    justify-content: center;/* 可选：居中对齐 */
    gap: 20px;  
 
}

.Hunk-custom-process img{width: 80px;height: 80px;}

.Hunk-step-img{width: 120px;height: 120px;margin-top: -50px;background: #fff;position: relative;margin-left:auto;margin-right:auto;z-index: 2;}

.Hunk-custom-step {
  flex: 0 0 48%;          /* 每个模块占一半宽度 */
    box-sizing: border-box; /* 包含 padding 在宽度内 */
    text-align: center;
    padding: 1rem 2rem;
    outline: 1px solid #ddd;
    margin-bottom: 5rem;
}




/* SVG circle styling */
.Hunk-svg-step {
  width: 100px;
  height: 100px;
  margin: auto;
  display: block;
}

/* Step title */
.Hunk-custom-step h3 {
  font-size: 2rem;
  
  margin-top: 1.5rem;
  font-weight: 600;
}

/* Step description */
.Hunk-custom-step p {
  font-size: 1.4rem;
  
  line-height: 1.6;
  margin-top: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .Hunk-custom-step {
    width: 45%;
  }
}

@media (max-width: 550px) {
  .Hunk-custom-step {
    width: 100%;
  }
}


.image-box-48 {

    color: #333;
   border-radius: 1.6rem;

   width: 100%;
  
 
      aspect-ratio: 25 / 17; 

   position: relative;
   overflow: hidden;
   box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 5px;

  }
    /* ========== 关键修改部分结束 ========== */
 
  .image-box-48:before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   background-color: #f6f6f6;
   z-index: 1;
  }
 
  .image-box-48 .img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   z-index: 1;
  }
 
  .image-box-48 .img span {
   width: 25%;
   height: 100%;
   overflow: hidden;
   position: relative;
   transition: 0.5s;
  }
 
  .image-box-48 .img span img {
   position: absolute;
   /* 这里的 400% 保持不变，确保图片完整覆盖四个 25% 的区域 */
   width: 400%; 
   height: 100%;
   top: 0;
   left: 0;
   /* object-fit: cover 确保图片在保持比例的同时覆盖整个容器 */
   object-fit: cover; 
   max-width: 400%;
  }
 
  .image-box-48 .img span:nth-child(1) img {
   left: 0;
  }
 
  .image-box-48 .img span:nth-child(2) img {
   left: -100%;
  }
 
  .image-box-48 .img span:nth-child(3) img {
   left: -200%;
  }
 
  .image-box-48 .img span:nth-child(4) img {
   left: -300%;
  }
 
  .image-box-48 .img span:nth-child(1) {
   transition-delay: 0;
  }
 
  .image-box-48 .img span:nth-child(2) {
   transition-delay: 0.1s;
  }
 
  .image-box-48 .img span:nth-child(3) {
   transition-delay: 0.2s;
  }
 
  .image-box-48 .img span:nth-child(4) {
   transition-delay: 0.3s;
  }

  .image-box-48:hover .img > span {
   transform: translateY(-100%);
  }
 
  .image-box-48:hover .image-box-content {
   transform: translateY(0%);
   transition: 1s;
   transition-delay: 0.1s;
  }

  .image-box-content {
   box-sizing: border-box;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;

   padding:0 20px;
   width: 100%;
   height: 100%;
   transform: translateY(100%);
   position: relative;
   z-index: 3;
   background-color: #f6f6f6;
   text-align: center;
  }


.countup-img img{width: 50px; height: 50px;margin-left: -20px;}

.countup-img{margin-bottom: 1rem;}

@media screen and (max-width: 767px){

.img-shift-right .Hunk-category-content, .img-shift-left .Hunk-category-content{padding:0!important;}


}

.img-shift-right .Hunk-category-content{padding-left: 5rem;}
.img-shift-left .Hunk-category-content{padding-right: 5rem;}

.img-shift-right .Hunk-image-bg{left:30px;}

.img-shift-left .Hunk-image-bg{right: 30px;}

.Hunk-category-content h3{font-size: 2.5rem;}


        .Hunk-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }
        
        .Hunk-image-wrapper {
            position: relative;
            overflow: visible;
        }
        
        .Hunk-image-bg {
            position: absolute;
            top: 30px;
           
            width: 100%;
            height: 100%;
            background-color: rgba(52, 152, 219, 0.6);
            z-index: -1;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .Hunk-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .Hunk-image-wrapper:hover img {
            transform: translate(-5px, -5px);
        }
        
        .Hunk-image-wrapper:hover .Hunk-image-bg {
            transform: translate(5px, 5px);
        }

        .Hunk-child-categories{display: flex;gap:4rem;}

        .Hunk-btn{


            color: #f48529;
    font-size: 1.6rem;
    padding: 7px 20px;
    border: 2px solid;
    background: none;
    border-radius: 30px;
    border-color: #f48529;
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;

        margin-top: 2rem;
        }

        .Hunk-btn:hover{

            background-color: #f48529;

            color: #fff;


        }


    

    .Hover-ripple-shadow {
            border: none;
            color: #fff;
            background-image: linear-gradient(30deg, #f48529, #ffb6c1);
            border-radius: 20px;
            background-size: 100% auto;
            font-family: inherit;
            font-size: 1.8rem;
            padding: 0.6em 1.5em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(237, 110, 143, 0.2);
        }

        .Hover-ripple-shadow:hover {
            background-position: right center;
            background-size: 200% auto;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(237, 110, 143, 0.3);
            -webkit-animation: pulse 2s infinite;
            animation: pulse512 1.5s infinite;
        }

        @keyframes pulse512 {
            0% {
                box-shadow: 0 0 0 0 rgba(237, 110, 143, 0.4);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(237, 110, 143, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(237, 110, 143, 0);
            }
        }




.title-with-bg {
  position: relative;
 
  font-weight: bold;
  text-align: center;
  margin: 100px 0;
  color: #222;
}

.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
}

/*------------------- testimonials ------------------------*/


.testimonial-style-2{display: flex;-js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;

}


    .testimonial-img{    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
    max-width: 200px;
    display: flex;
    align-items: center;


}

.Hunk-testimonial{transition: opacity .3s,transform .3s,background-color .3s;padding: 20px;}
.testimonial-img, .testimonial-texts{transition: opacity .3s,transform .3s,background-color .3s}
.aligncenter{text-align: center;}
.testimonial-texts{    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;padding-left: 1rem;}
.move-up:hover{transform: translateY(-6px);box-shadow: 0px 30px 40px 0px rgb(0 0 0 / 20%);}
.box-shadow-2{box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);}
.round{border-radius: 999px!important;
    -o-object-fit: cover;
    object-fit: cover;}

    .round img {
    border-radius: 999px!important;
    -o-object-fit: cover;
    object-fit: cover;
}
.ratings{text-align: center;
    font-size: 18px;
    display: block;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1em;
    letter-spacing: 0;
    width: 9.6rem;
    font-weight: normal!important;
    -webkit-font-smoothing: antialiased;

    margin: 1rem auto;
}

.testimonial-meta{margin: 0.5rem auto;}
.ratings:before{color: #D26E4B;    
    content: '\2605\2605\2605\2605\2605';
    color: #d26e4b;
    float: left;
    top: 0;
    left: 0;
    position: absolute;}

.ratings span:before{color: #D26E4B;    
    content: '\2605\2605\2605\2605\2605';
    color: #d26e4b;
      top: 0;
    left: 0;
    position: absolute;}


/*--------------------- home CTA ----------------------------*/


              


           .Hunk-cta-banner {
            display: flex;
            background: white;
            border-radius: 20px;
            /* 关键点：设置为 visible，允许图片溢出显示 */
            overflow: visible; 
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            width: 100%;
            position: relative;
            /* 给上方留出空间，防止溢出的图片被切掉 */
            margin-top: 60px; 
            margin-left: auto;
            margin-right: auto;
        }
        
        .Hunk-cta-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            /* 关键修改：去掉了原来的方形背景色，只留透明 */
            background: transparent; 
            /* 调整这一列的宽度比例，给图片留空间 */
            min-width: 40%;
        }
        
        /* 添加一个装饰性的背景圆，让镂空图片不显得太单调 */
     
        
        .Hunk-cta-image img {
            max-width: 300px;
            height: auto;
            z-index: 10; /* 确保图片在最上层 */
            
            /* --- 核心溢出效果设置 --- */
            /* 放大 1.4 倍 */
            transform: scale(1.3) translateX(-10px) translateY(-20px); 
            /* 添加强烈的投影，增加立体悬浮感 */
            filter: drop-shadow(15px 15px 25px rgba(0, 0, 0, 0.3));
            
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        /* 悬停时的微动效：进一步放大 */
        .Hunk-cta-banner:hover .Hunk-cta-image img {
            transform: scale(1.4);
        }
        
        .Hunk-cta-content {
            flex: 1.2; /* 让文字区域宽一点 */
            padding: 30px; /* 左侧padding减小，让图片靠近文字 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
            align-items: flex-start;
        }
 
    
        /* 移动端适配 */
        @media (max-width: 900px) {
            .Hunk-cta-banner {
                flex-direction: column;
                margin-top: 100px; /* 手机端顶部留更多空间给溢出的图片 */
                text-align: center;
            }
            
            .Hunk-cta-image {
                min-height: 200px;
                /* 手机端让图片向上溢出 */
                margin-bottom: -40px; 
            }
            
            .Hunk-cta-image::after {
                width: 250px;
                height: 250px;
            }
            
            .Hunk-cta-image img {
                width: 280px;
                /* 手机端调整溢出方向：向上 */
                transform: scale(1.1) translateY(-60px);
            }
            
            .Hunk-cta-banner:hover .Hunk-cta-image img {

                transform: scale(1.4);
               
            }
            
            .Hunk-cta-content {
                padding: 40px 30px 50px 30px;
                align-items: center;
            }
            
            .Hunk-cta-content h2 {
                font-size: 2rem;
            }
            
          
        }


/*----------------------- button ----------------------------*/


.hover-icon-rotate {
  display: flex;
  align-items: center;

  cursor: pointer;

  font-size: 1.5rem;
  padding: 0.8em 1.5em 0.8em 1em;
  height: 4rem;
  color: #ffffff;
  background: linear-gradient(135deg, #f48529 0%, #f48529 100%); /* 渐变紫蓝 */
  border: none;
  letter-spacing: 0.05em;
  border-radius: 20px; /* 圆润更现代 */
  box-shadow: 0 4px 1.5rem rgba(0, 0, 0, 0.3); /* 微阴影 */
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.hover-icon-rotate svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  transform: rotate(-45deg); /* 默认向右上角 */
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), color 0.3s;
  color: #ffffff;
}

.hover-icon-rotate span {
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.hover-icon-rotate:hover svg {
  transform: translateX(5px) rotate(0deg); /* hover 向右 */
}

.hover-icon-rotate:hover span {
  transform: translateX(7px);
}

.hover-icon-rotate:hover {
  background: linear-gradient(135deg, #ff7e5f, #feb47b); /* 橙粉渐变 */
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.5);
  color: #fff;


}

/*

/*--------------- home social share part ------------------------*/



    .Hunk-social-follow {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    gap: 0.8rem;
    list-style: none;
    margin-top: 3rem;
    position: absolute;
    bottom: 2rem;
    width: 100%;
}

@media (max-width: 992px){

    .Hunk-social-follow{display: none;}



}
   

    .Hunk-social-follow li {
      position: relative;
      flex-basis: 2.5rem;
      list-style: none;
    }

    .Hunk-social-follow li::after {
      position: absolute;
      content: attr(data-tooltip);
      inset: -45% auto auto 50%;
      z-index: -1;
      translate: -50%;
      padding: 0.25rem 0.75rem;
      font-size: 0.875rem;
      color: #fff;
      background: var(--bg, #070707);
      border-radius: 0.25rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
        visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
    }

    .Hunk-social-follow li:has(a:hover, a:focus-visible)::after {
      opacity: 1;
      visibility: visible;
      inset-block-start: -90%; /* 调节tooltip位置 */
    }

    .Hunk-social-follow a {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      aspect-ratio: 1;
      font-size: 1.75rem;
      color: #070707;
      border: 1px solid;
      border-radius: 100%;
      text-decoration: none;
      outline: none;
      overflow: hidden;
      transition: color 0.3s ease-in-out;
    }

    .Hunk-social-follow a > svg {
      position: relative;
      z-index: 1;
      width: 1rem;
      height: 1rem;
      fill: currentColor;
    }

    .Hunk-social-follow a::after {
      position: absolute;
      content: "";
      inset: 100% 0 0;
      background: var(--bg, #070707);
      pointer-events: none;
      transition: inset 0.3s ease-in-out;
    }

    .Hunk-social-follow a:hover,
    .Hunk-social-follow a:focus-visible {
      color: #fff;
    }

    .Hunk-social-follow a:hover::after,
    .Hunk-social-follow a:focus-visible::after {
      inset-block-start: 0;
    }
    

    

/*----------------------- product why us -----------------------*/


.Hunk-whyus-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: sans-serif;
    text-align: center;
}

.Hunk-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.Hunk-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.Hunk-whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 固定三列 */
    gap: 30px;
    justify-items: center;
}


.Hunk-whyus-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.Hunk-whyus-item:hover {
    transform: translateY(-5px);
}

.Hunk-whyus-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: #339af0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.Hunk-whyus-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.Hunk-whyus-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/*------------------ products page -----------------------------------------*/



.Hunk-product-list{display: block;position: relative;padding: 2rem;}


        .Hunk-tabs-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
            background: white;
        }
        
        .Hunk-level-one-tabs {
            display: flex;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            flex-wrap: wrap;
        }
        
        .Hunk-level-one-tab {
            padding: 16px 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #6c757d;
            position: relative;
           
            min-width: 120px;
            text-align: center;
            white-space: nowrap;
        }
        
        .Hunk-level-one-tab.Hunk-active {
            color: #495057;
            background-color: white;
        }
        
        .Hunk-level-one-tab.Hunk-active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            border-radius: 3px 3px 0 0;
        }
        
        .Hunk-level-one-tab:hover:not(.Hunk-active) {
            background-color: #e9ecef;
            color: #495057;
        }
        
        .Hunk-level-two-container {
            background-color: white;
            padding: 0;
        }
        
        .Hunk-level-two-tabs {
            display: flex;
            border-bottom: 1px solid #e9ecef;
            flex-wrap: wrap;
        }
        
        .Hunk-level-two-tab {
            padding: 14px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #6c757d;
            font-size: 14px;
            position: relative;
            flex: 1;
            min-width: 100px;
            text-align: center;
        }
        
        .Hunk-level-two-tab.Hunk-active {
            color: #495057;
            font-weight: 500;
        }
        
        .Hunk-level-two-tab.Hunk-active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
        }
        
        .Hunk-level-two-tab:hover:not(.Hunk-active) {
            color: #495057;
            background-color: #f8f9fa;
        }
        
        .Hunk-tab-content {
            padding: 40px 30px;
            min-height: 400px;
            animation: Hunk-fadeIn 0.4s ease;
        }
        
        .Hunk-tab-panel {
            display: none;
        }
        
        .Hunk-tab-panel.Hunk-active {
            display: block;
        }
        
        .Hunk-content-highlight {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
            margin: 20px 0;
        }
        
        @keyframes Hunk-fadeIn {
            from { 
                opacity: 0;
                transform: translateY(10px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .Hunk-tabs-container {
                margin: 10px;
                border-radius: 8px;
            }
            
            .Hunk-level-one-tab {
                padding: 14px 16px;
                font-size: 14px;
                min-width: 100px;
            }
            
            .Hunk-level-two-tab {
                padding: 12px 16px;
                font-size: 13px;
                min-width: 80px;
            }
            
            .Hunk-tab-content {
                padding: 30px 20px;
                min-height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .Hunk-level-one-tabs,
            .Hunk-level-two-tabs {
                flex-direction: column;
            }
            
            .Hunk-level-one-tab,
            .Hunk-level-two-tab {
                min-width: 100%;
                text-align: left;
                padding: 12px 20px;
            }
            
            .Hunk-level-one-tab.Hunk-active::after,
            .Hunk-level-two-tab.Hunk-active::after {
                left: 0;
                transform: none;
                width: 4px;
                height: 100%;
            }
            
            .Hunk-tab-content {
                padding: 20px 15px;
            }
        }


 .Hunk-tabs { display: flex; gap: 1.5rem; cursor: pointer; margin-bottom: 5rem; flex-wrap: wrap;justify-content: center;}
    .Hunk-tab-item { padding: 10px 20px; background:#f1f1f1; border-radius:5px; transition:0.3s;}
    .Hunk-tab-item.Hunk-active, .Hunk-tab-item:hover{ background:#f48529; color:#fff; }

    .Hunk-tab-content { display:none; opacity:0; transition: opacity .4s ease; }
    .Hunk-tab-content.Hunk-active { display:block; opacity:1; }

    .Hunk-child-cat-card {
        padding:20px; background:#fafafa; border:1px solid #eee; margin-bottom:20px;
        border-radius:8px; display:flex; gap:1.5rem; align-items:flex-start;
    }
    .Hunk-child-cat-card img { width:120px; height:120px; object-fit:cover; border-radius:6px; }
    .Hunk-child-cat-card h3 { margin:0 0 10px; }
    .Hunk-child-cat-button{
        display:inline-block; margin-top:10px;
        padding:8px 1.6rem; background:#0073aa; color:white;
        border-radius:4px; text-decoration:none; transition:0.3s;
    }
    .Hunk-child-cat-button:hover{ background:#005a87; }



    .Hunk-cards-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 平板和手机 */
@media (max-width: 992px) {
    .Hunk-cards-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .Hunk-cards-wrap {
        grid-template-columns: 1fr;
    }
}


    /* 卡片样式 */
    .Hunk-card {
      width:100%;
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 1.5rem -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* 图片容器 - 调整后的剪裁角度 */
    .Hunk-card-image-container {
      height: 160px;
      clip-path: polygon(0 0, 100% 0, 100% 89%, 0% 100%);
      position: relative;
      overflow: hidden;
    }
    
    /* 图片样式 */
    .Hunk-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .Hunk-card:hover .Hunk-card-image {
      transform: scale(1.05);
    }
    
    /* 内容区域 */
    .Hunk-card-content {
      padding: 1.6rem;
    }
    
    /* 标题样式 */
    .Hunk-card-content h3 {
      font-weight: 700;
      font-size: 1.8rem;
      line-height: 28px;
      margin: 0 0 8px 0;
    }
    
    /* 描述文本 */
    .Hunk-card-content p {
   
     

      color: #555;
     
      margin: 0;
    }




  /*-------------------------*/


    .image-box-32 h3{color: #fff;}

    .image-box-32 {
      position: relative;
     
      height: auto;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-box-32 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .image-box-32 .box-text {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 80px; /* 初始状态只显示标题 */
      color: #fff;
      text-align: center;
      background: linear-gradient(to top, rgba(237,110, 143, 0.9) 30%, transparent 100%);
      transition: height 0.5s ease;
      overflow: hidden;
    }

    .image-box-32 .box-text h2 {
      margin: 20px 0;
      font-size: 2.4rem;
    }

    .image-box-32 .box-text p,
    .image-box-32 .box-text .project-btn {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .image-box-32:hover img {
      transform: scale(1.1);
    }

    .image-box-32:hover .box-text {
      height: 100%; /* 悬停状态覆盖整个图片 */
      background: linear-gradient(to top, rgba(237,110, 143, 0.9) 30%, transparent 100%);
    }

    .image-box-32:hover .box-text p,
    .image-box-32:hover .box-text .project-btn {
      opacity: 1;
      transform: translateY(0);
    }

    .image-box-32 .box-text p {
      margin: 10px 20px;
      font-size: 1.6rem;
    }

    .project-btn{display: inline-block;}

    .image-box-32 .box-text .project-btn {
      margin: 20px 0;
      padding: 10px 20px;
      background: #fff;
      color: #333;
      border: none;
      border-radius: 20px;
      cursor: pointer;
    }

    .image-box-32 .box-text .project-btn:hover {
      background: #333;
      color: #fff;
    }


.Hunk-subtitle{text-align: center;display: inline-block;position: relative;margin: 0 auto;}

.Hunk-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

ul, li{margin:0;}


    


/*-------------------homepage product part ----------------------------*/


/* Grid */
.Hunk-oem-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.Hunk-oem-item {
    background: #fff;
    padding: 1.7rem;
    border-radius: 5px;
    box-shadow: 0 4px 1.8rem rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.Hunk-oem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.Hunk-oem-item h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.Hunk-oem-item p {
    color: #666;
    line-height: 1.6;
}


/* Extended capabilities */
.Hunk-extended-capabilities {
    margin-top: 60px;
}

.Hunk-extended-capabilities h3 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.Hunk-extended-capabilities ul {
    columns: 2;
    column-gap: 40px;
    padding-left: 20px;
}

.Hunk-extended-capabilities li {
    margin-bottom: 12px;
    font-size: 1.7rem;
    color: #444;
}

/* Industry use cases */
.Hunk-oem-cases {
    margin-top: 65px;
}

.Hunk-oem-cases h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.Hunk-case-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.Hunk-case-item {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    border-left: 6px solid #f48529;
    box-shadow: 0 3px 1.5rem rgba(0,0,0,0.07);
}

.Hunk-case-item strong {
    font-size: 1.8rem;
}

.Hunk-case-item p {
    margin-top: 6px;
    color: #555;
    line-height: 1.5;
}



/* Mobile */
@media (max-width: 768px) {
    .Hunk-section-title {
        font-size: 2rem;
    }
    .Hunk-extended-capabilities ul {
        columns: 1;


    }}



.Hunk-grid-container {
      display: grid;
      gap: 20px;
      max-width: 1200px;
      margin: auto;
      margin-bottom: 80px;
      box-shadow: 0 1.5rem 30px rgba(0,0,0,0.1);
      border-radius: 1.6rem;
      padding: 25px;
      background: white;
    }

    .Hunk-product-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      background: #f8f9fa;
      box-shadow: 0 5px 1.5rem rgba(0,0,0,0.08);
    }
    .Hunk-product-item a {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
    }
    .Hunk-product-item img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover;
      object-position: center center; /* 保证图片居中显示 */
      transition: transform 0.5s ease;
    }
    .Hunk-product-item:hover { 
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    .Hunk-product-item:hover img {
      transform: scale(1.05);
    }
    .title {
      position: absolute; 
      bottom: 20px; 
      left: 20px;
      background: rgba(0,0,0,0.7); 
      color: #fff;
      padding: 10px 20px; 
      border-radius: 30px; 
      font-size: 1.6rem;
      font-weight: 600;
      backdrop-filter: blur(4px);
      z-index: 5; /* 提高优先级，确保文字在上方显示 */
      transition: all 0.3s ease;
    }
    .Hunk-product-item:hover .title {
      background: rgba(44, 62, 80, 0.9);
      transform: translateY(-5px);
    }


    /* 方案C：对角线对称设计（已修复 item3 重叠问题） */
    .layout-6C {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 200px);
    }
    .layout-6C .item1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .layout-6C .item2 { grid-column: 3 / 4; grid-row: 1 / 3; }
    .layout-6C .item3 { grid-column: 1 / 2; grid-row: 2 / 3; } /* 修复：不再跨两行，避免与 item6 重叠 */
    .layout-6C .item4 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .layout-6C .item5 { grid-column: 2 / 4; grid-row: 3 / 4; }
    .layout-6C .item6 { grid-column: 1 / 2; grid-row: 3 / 4; }


     /* 响应式设计 */
    @media(max-width: 900px){
      .Hunk-grid-container {
        gap: 1.5rem;
        padding: 1.5rem;
      }
      
      .layout-6A, .layout-6B, .layout-6C, .layout-6D,
      .layout-8A, .layout-8B, .layout-8C, .layout-8D {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }


      .layout-6C .Hunk-product-item{
        grid-column: auto !important;
        grid-row: auto !important;
      }

    }


    @media(max-width: 600px){

      
      .Hunk-grid-container {
        grid-template-columns: 1fr !important;
      }
      
   
    }
      



.Product-texts {
    background-color: #f6f6f6;
    padding: 1rem;
    text-align: center;
}

.Hunk-featured-product-item{outline: 1px solid #f6f6f6;transition: all .5s;overflow: hidden;}
.Hunk-featured-product-item:hover{outline-color: #f48529;transition: all .5s;overflow: hidden;}
.Hunk-featured-product-item:hover img{transform: scale(1.1);transition: all .5s;}
.Hunk-featured-product-item img{transition: all .5s;}

.Hunk-featured-product-item p{color: #555;}


.w-50{width: 50%;margin-bottom: 2rem;}
.w-100{margin-bottom: 2rem;}



    .Hunk-flowchart {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      text-align: center;
      padding: 20px;
    }

    .Hunk-process-step {
      padding: 1.5rem 20px;
      border: 1px solid #333;
      border-radius: 5px;
      min-width: 200px;
      max-width: 250px;
      height: 280px; /* 统一高度 */
      background-color: #f9f9f9;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; /* 垂直居中 */
      box-sizing: border-box;
    }

    .Hunk-process-step img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }

    .Hunk-process-step h3 {
      font-size: 1.6rem;
      margin: 0 0 10px 0;
    }

    .Hunk-process-step p {
      font-weight: normal;
      font-size: 1.4rem;
      margin: 0;
      line-height: 1.5;
    }

    .Hunk-process-arrow {
      font-size: 20px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .Hunk-flowchart {
        flex-direction: column;
        gap: 5px;
      }
      .Hunk-process-arrow {
        transform: rotate(90deg);
      }
    }


 /*--------------- testimonial -----------------------------------------*/




    /*****************-----------------------*/


    .Hunk-carousel {
      width: 100%;
     
    
      position: relative;
      overflow: hidden;
      
      border-radius: 8px;
      padding: 10px 0;
    }

    .Hunk-carousel-track {
      display: flex;
      transition: transform 0.4s ease-in-out;
      will-change: transform;
      align-items: center;
    }

    .Hunk-carousel-slide {
      flex-shrink: 0;
      height: 150px; /* 图片高度固定 */
      margin: 0 8px; /* 左右各8px的边距 */
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      user-select: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      background: white;
      display: flex;
      align-items: center; /* Vertically center the image */
      justify-content: center; /* Horizontally center the image */
    }

    .Hunk-carousel-slide img {
      max-width: 100%;   /* Ensure image doesn't overflow its parent's width */
      max-height: 100%;  /* Ensure image doesn't overflow its parent's height */
      width: auto;       /* Allow width to adjust based on aspect ratio */
      height: auto;      /* Allow height to adjust based on aspect ratio */
      display: block;
      object-fit: contain; /* Scales image down to fit while maintaining aspect ratio */
    }

    .Hunk-carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: rgba(0,0,0,0.4);
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 36px;
      font-size: 20px;
      cursor: pointer;
      user-select: none;
      z-index: 10;
      transition: background 0.3s ease;
    }

    .Hunk-carousel-nav:hover {
      background: rgba(0,0,0,0.7);
    }

    .Hunk-nav-left { left: 12px; }
    .Hunk-nav-right { right: 12px; }



    


  .Hunk-icon-box{padding-top: 30px;background-color:rgba(255,255,255,0.05);border-radius: 10px;transition: all 0.3s;}
  .Hunk-icon-box:hover{background-color: rgba(255,255,255,0.15);}
  .txtcenter{text-align: center;}


  

  .svg-icon{width: 60%;border: 3px solid #00afee;border-radius: 50%;}

  .icon:hover svg{background:#00afee;}
  .icon:hover path{fill:#fff;}

.style-3 .icon{width: 100%;display: flex;
    align-items: center;

    margin-bottom: 1rem;

  }

  .title-icon{width: 40px;display: inline-block;margin-right:20px;vertical-align: middle;}
  .icon h3{display: inline-block;margin:0;}

.style-3{text-align: left;}






.Hunk-service-text{display: flex;align-items: flex-start;flex-direction: column;justify-content: center;}
.Hunk-service-text h3{margin-bottom: 2rem;}

.Hunk-service-text h4{margin-bottom: 1rem;}

.Hunk-service-text ul{margin-bottom: 2rem;}


.move-up:hover{transform: translateY(-6px);box-shadow: 0px 30px 40px 0px rgb(0 0 0 / 20%);transition: all .5s;}

.move-up{transition: all .5s;}

  .box-shadow-2{box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);height: 100%;transition: all .5s;}






.Hunk-circle-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.Hunk-circle-item {
  flex: 1 1 240px;
  max-width: 240px;
  text-align: center;
}

.Hunk-circle-item img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
}

.Hunk-circle-item div {
  font-size: 1.4rem;
  color: #333;
}

@media (max-width: 768px) {
  .Hunk-circle-row {
    justify-content: center;
  }

  .Hunk-circle-item {
    flex: 1 1 140px;
    max-width: 140px;
  }

  .Hunk-circle-item img {
    width: 120px;
    height: 120px;
  }
}

.counter {
    font-size: 40px;
    margin-right: 5px;
    font-weight: 700;
}

.Hunk-counter-boxes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.counter-img {
   
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    border-radius: 100%;
    justify-content: center;
}

.counter-img img {
    width: 5rem;
    height: 5rem;
}





.Hunk-about-text li{margin-bottom: 0;}

.Hunk-about-text ul{margin-bottom: 2rem;}

.Hunk-about-txt{padding:0 3rem;margin-left:0rem;margin-top:0rem;transition: all .5s;height: 100%;transition: all .5s;}


.Hunk-about-txt .button:hover{outline-color: #fff;}

.Hunk-about-txt:hover .button{color:#fff!important;}

@media screen and (max-width: 767px) {

  .Hunk-about-txt{margin:0;}



}



figure{line-height: 1.5!important;}

.batch-effect {
  position: relative;
  display: inline-block;
  margin: 0px;
  max-width: 100%;
  background-color: #2266a5;
  color: #fff;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.batch-effect > img {
  vertical-align: top;
  max-width: 100%;
}

.batch-effect figcaption {
  background-color: #f48529;
  position: absolute;
  padding: 30px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.batch-effect h3,
.batch-effect p {
  color: #fff;
  padding: 0px;
  margin: 0;
}

.batch-effect > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.batch-effect,
.batch-effect:before,
.batch-effect:after,
.batch-effect *,
.batch-effect *:before,
.batch-effect *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
}




.bar-style:before,
.bar-style:after,
.bar-style figcaption:before,
.bar-style figcaption:after {
  background-color: #f48529;
  opacity: 0;
  position: absolute;
  content: '';
}

.bar-style:before,
.bar-style:after {
  z-index: 1;
}

.bar-style figcaption {
  z-index: 3;
  background-color: transparent;
}

.bar-style figcaption * {
  opacity: 0;
}

.bar-style figcaption:before,
.bar-style figcaption:after {
  z-index: -1;
}

.bar-style a {
  z-index: 3;
}

.bar-style:hover:before,
.bar-style:hover:after,
.bar-style:hover figcaption:before,
.bar-style:hover figcaption:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.bar-style:hover figcaption * {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  -moz-transition-delay: 0.35s;
  transition-delay: 0.35s;
}


/* bar-style-1
  ----------------------------- */

.bar-style-1 h3{text-align: center;margin-bottom: 2rem;}
.bar-style-1 p{margin-bottom: 2rem;}
.bar-style-1 a{color: #fff;}
.bar-style-1 a:hover{font-weight: 700;}

.bar-style-1:before,
.bar-style-1:after,
.bar-style-1 figcaption:before,
.bar-style-1 figcaption:after {
  width: 26%;
  height: 100%;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  top: 0;
}

.bar-style-1:before {
  left: 0;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

.bar-style-1:after {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  -moz-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.bar-style-1 figcaption:before {
  left: 50%;
  -webkit-transition-delay: 0.21s;
  -moz-transition-delay: 0.21s;
  transition-delay: 0.21s;
}

.bar-style-1 figcaption:after {
  left: 75%;
  -webkit-transition-delay: 0.35s;
  -moz-transition-delay: 0.35s;
  transition-delay: 0.35s;
}







.current-menu-item>a, .current-menu-item>a>span, .current-category, .current-sub-category, .current-menu-item>button>i:before{color:#f48529!important;font-weight: 700!important;}



.current-menu-item>.Hunk-dropdown-title span{color: #f48529;}


.sub-menu .current-menu-item>a{color: #fff!important;
    background-color: #434343;font-weight: 700!important;}

    .sub-menu .current-menu-item>a:before{background-color: #fff!important;}




.small-button a{ line-height: 2.4em;
    min-height: 2.em;
        padding: 0 1.2em;
 font-size: .97em;
    letter-spacing: .03em;width:14em;}

     .hovericon span{transform: translateX(1.3em);    display: inline-block;
    transition: opacity .3s,transform .3s;
}

 .reverse.button {border: 2px solid #f48529;
    background-color: transparent;color:#f48529;}
    .reverse.button:hover{background: #f48529;color:#fff;}

 .hovericon svg{ display: inline-block;
    transition: opacity .3s,transform .3s;}

    .hovericon:not(:hover) svg {
    opacity: 0;

}
.hovericon:hover>span{transform: translateX(0);}

.svg-icon{width:1em;height: 1em;margin-left: 5px;font-size:19px;line-height: 2.5em;}  



     
/*---------------- accordion --------------*/


    .Hunk-modern-accordion {
      display: block;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      max-width: 900px;
      margin: 0px auto;
      transition: transform 0.2s ease;
      border: 1px solid #e0e0e0;
    }

    .Hunk-modern-accordion:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    .Hunk-accordion + .Hunk-accordion-title {
      user-select: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.6rem 24px;
      background: #ffffff;
      color: #333;
      border-bottom: 1px solid #e0e0e0;
      transition: all 0.3s ease;
    }

    .Hunk-accordion + .Hunk-accordion-title:hover {
      background: #f5f5f5;
    }

    .Hunk-accordion ~ .Hunk-accordion-title strong {
      line-height: 24px;
      font-weight: 600;
      font-size: 1.6rem;
    }

    .Hunk-accordion ~ .Hunk-accordion-title .plus-icon,
    .Hunk-accordion ~ .Hunk-accordion-title .minus-icon {
      transition: all 0.3s ease;
      width: 20px;
      height: 20px;
    }

    .Hunk-accordion ~ .Hunk-accordion-title .plus-icon {
      display: block;
    }

    .Hunk-accordion:checked ~ .Hunk-accordion-title .plus-icon {
      display: none;
    }

    .Hunk-accordion ~ .Hunk-accordion-title .minus-icon {
      display: none;
    }

    .Hunk-accordion:checked ~ .Hunk-accordion-title .minus-icon {
      display: block;
    }

    .Hunk-accordion ~ .Hunk-accordion-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 24px;
      cursor: pointer;
      background: #ffffff;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .Hunk-accordion:checked ~ .Hunk-accordion-content {
      max-height: 1000px;
      padding: 1.6rem 24px;
    }

    .Hunk-accordion ~ .Hunk-accordion-content p {
      margin: 0;
      font-size: 1.6rem;
      line-height: 1.6;
      color: #555;
    }

    .Hunk-accordion:checked ~ .Hunk-accordion-title {
      background: #f5f5f5;
    }
/*----------------- floating bar --------------*/


        /* 基础样式 */
        .Hunk-floating-contact {
            position: fixed;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 1000;
        }

        .Hunk-contact-btn {
          padding: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .Hunk-contact-btn:hover {
            transform: scale(1.1);
        }

        .email-btn {
            background-color: #EA4335; /* Gmail红色 */
        }

        .whatsapp-btn {
            background-color: #25D366; /* WhatsApp绿色 */
        }

        .phone-btn {
            background-color: #4285F4; /* 蓝色 */
            display: none; /* 默认隐藏 */
        }

        .Hunk-contact-icon {
            width: 24px;
            height: 24px;
        }

        /* 移动端样式 */
        @media (max-width: 768px) {
            .Hunk-floating-contact {
              padding: 3px 0;
              position: sticky;
                right: unset;
                left: 0;
                right: 0;
                top: 1px;
                bottom: 2px;
                top: unset;
                transform: none;
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }

            .Hunk-contact-btn {
                width: 60px;
                height: 60px;
            }

            .phone-btn {
                display: flex; /* 移动端显示电话图标 */
            }
        }

        /* 极小屏幕优化 */
        @media (max-width: 480px) {
            .Hunk-floating-contact {
                bottom: 10px;
            }
            
            .Hunk-contact-btn {
                width: 50px;
                height: 50px;
            }
            
            .Hunk-contact-icon {
                width: 22px;
                height: 22px;
            }
        }


/*------------- about page ---------------------------*/



.hunk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.hunk-item {
   
    padding: 25px;
    border-radius: 8px;

    background-color: #f6f6f6;

}

.hunk-title {

    font-weight: bold;

    margin-bottom: 5px;

}

.hunk-subtitle {

    margin-bottom: 1.5rem;
    font-style: italic;
}

.hunk-points {
    list-style: disc;
    padding-left: 1.5rem;
}

.hunk-points li {
    padding: 0;
   
    position: relative;
    padding-left: 0px;
}







        
        /* 动画效果 */
        @keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .main-heading {
                font-size: 3rem;
            }
            .sub-heading {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .banner-style-1 {
                height: 60vh;
            }
            .main-heading {
                font-size: 2.5rem;
            }
            .sub-heading {
                font-size: 1.1rem;
            }
            .cta-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .banner-style-1 {
                height: 50vh;
            }
            .main-heading {
                font-size: 2rem;
            }
            .sub-heading {
                font-size: 0.9rem;
            }
        }

/* 中屏设备：平板等，显示 2 列 */
@media (max-width: 768px) {
  .Hunk-benefits-container {
    grid-template-columns: repeat(1, 1fr)!important;
  }
}

/* 大屏设备：桌面显示 4 列 */
@media (max-width: 1200px) {
  .Hunk-benefits-container {
    grid-template-columns: repeat(2, 1fr)!important;
  }
}


   .Hunk-benefits-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    
      margin: 10px auto;
      padding: 0 20px;
     
    }

    .Hunk-benefit-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      padding: 20px;
      transition: transform 0.2s ease;
    }

    .Hunk-benefit-card:hover {
      transform: translateY(-4px);
    }

    .Hunk-benefit-title {
      display: flex;
      align-items: flex-start;
      font-weight: bold;
      font-size: 1.1em;
      margin-bottom: 10px;
    }

    .Hunk-benefit-title::before {
      content: "\2605";
      margin-right: 8px;
    }

    .Hunk-benefit-description {
      font-size: 0.95em;
      color: #333;
      line-height: 1.5;
    }


     .Hunk-features-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    
      margin: 0 auto;

      line-height: 1.6;
    }

    .Hunk-feature-title::before {
      content: "\2713";

      margin-right: 1rem;
      
    }

    .Hunk-feature-item {
      background: #f9f9f9;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .Hunk-feature-title {
      font-weight: bold;
      margin-bottom: 5px;
      display: block;
      font-size: 1.8rem;
    }


  .Hunk-seperator-title {
      display: flex;
      align-items: center; /* 垂直居中对齐 */
      padding: 20px 20px 20px 0;
    }

   .Hunk-seperator-title h3{margin: 0;color: #f48529;}

    .title-line {
      flex-shrink: 0;
      width: 100px;
      height: 1px;
      background-color: #999;
      margin-left: 1.6rem; /* 标题和线之间的间距 */
    }


    .Hunk-team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.Hunk-team-member {
  
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

    height: 100%;
}

.Hunk-team-member:hover {
    transform: translateY(-5px);
}

.Hunk-team-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.Hunk-team-name {
    margin: 1.5rem 0 5px;
    font-size: 20px;
    color: #222;
}

.Hunk-team-divider {
    width: 60%;
    height: 1px;
    background-color: #ddd;
    margin: 8px auto;
}

.Hunk-team-title {
    margin: 0 0 10px;
    font-size: 1.6rem;
    color: #777;
}

.Hunk-team-description {
    font-size: 1.5rem;
    color: #444;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.5;
}


.category-read-more{color:#f48529;text-decoration: underline;}


#Hunk-category-info{
  scroll-margin-top: 80px; /* 根据你的 header 高度调整 */
}

#Hunk-category-info ul{margin-bottom: 2rem;}

.Hunk-top-category-description{color: #fff;margin-top: 1rem;}

/*----------------------- sidebar --------------------*/


.Hunk-category-sidebar{padding: 3rem 2rem;background-color: #f6f6f6;position: sticky;top:7rem;}
.Hunk-category-sidebar a{color: #333;}
.Hunk-category-sidebar a:hover{color: #f48529;}
.Hunk-category-sidebar ul{padding-left:0;list-style: none;}


.section{margin:2rem 0;}


/**--------------------------------- cta style ----------------------------*/


        .Hunk-cta {
            width: 100%;
            max-width: 1200px;
            background: #f6f6f6;
            padding: 50px;
            margin: 0 auto;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* 添加背景图片 */
        .Hunk-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }
        
        .cta-text, .cta-btn {
            display: inline-block;
            position: relative;
            z-index: 2;
        }

  
        .small-button a {
            line-height: 2.4em;
            min-height: 2em;
            padding: 0 1.2em;
            font-size: .97em;
            letter-spacing: .03em;
            width: 14em;
        }

        .hovericon span {
            transform: translateX(1.3em);
            display: inline-block;
            transition: opacity .3s, transform .3s;
        }

        .reverse.button {
            border: 2px solid #f48529;
            background-color: transparent;
            color: #f48529;
        }
        
        .reverse.button:hover {
            background: #f48529;
            color: #fff;
        }

        .hovericon svg {
            display: inline-block;
            transition: opacity .3s, transform .3s;
        }

        .hovericon:not(:hover) svg {
            opacity: 0;
        }
        
        .hovericon:hover > span {
            transform: translateX(0);
        }

        .svg-icon {
            width: 1em;
            height: 1em;
            margin-left: 5px;
            font-size: 19px;
            line-height: 2.5em;
        }

        .cta-style-2 .cta-text, 
        .cta-style-2 .cta-btn {
            width: 100%;
        }

        .cta-style-2 .cta-text {
            margin-bottom: 40px;
        }

        .cta-style-2 {
            display: block;
            text-align: center;
        }
        
        .cta-style-2 .Hunk-button {
            display: inline-block;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .Hunk-cta {
                padding: 30px 20px;
            }
            
            .cta-text h2 {
                font-size: 1.5rem;
                line-height: 1.4;
            }
            
            .small-button a {
                width: 100%;
                max-width: 300px;
                padding: 0 1.5rem;
                font-size: 0.9em;
            }
            
            .cta-style-2 .cta-text {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .Hunk-cta {
                padding: 25px 1.5rem;
            }
            
            .cta-text h2 {
                font-size: 1.3rem;
            }
            
            .small-button a {
                font-size: 0.85em;
                line-height: 2.2em;
            }
        }

  .cta-text, .cta-btn{display: inline-block;}




    .small-button a{ line-height: 2.4em;
    min-height: 2.5em;
    padding: 0 1.2em;
 font-size: .97em;
    letter-spacing: .03em;}

    .small-button .btn-icon, .middle-button .btn-icon{font-size: .97em;}




    .Hunk-button.light-to-heavy{outline: none;}
.light-to-heavy:hover{transition: all .3s; box-shadow: inset 0 0 0 100px rgb(0 0 0 / 20%);}

    .middle-button a{ line-height: 3em;
    min-height: 3.2em;
    padding: 0 1.5em;
 font-size: .97em;
    letter-spacing: .03em;}

    .large-button a{ line-height: 3.5em;
    min-height: 3.5em;
    padding: 0 2em;
 font-size: 1.2em;
    letter-spacing: .03em;}

    .large-button .btn-icon{font-size: 1.2em;}


  
   .hovericon span{transform: translateX(.75em);    display: inline-block;
    transition: opacity .3s,transform .3s;
}

 .hovericon .btn-icon{ display: inline-block;
    transition: opacity .3s,transform .3s;margin-right: 10px;}

    .hovericon:not(:hover) .btn-icon {
    opacity: 0;
}
.hovericon:hover>.btn-txt{transform: translateX(0);}


.cta-style-1 {display: flex;align-items: center;flex-flow: row nowrap;
          justify-content: center;flex-direction: column;}


 .nospace{padding-top: 0!important;}

.section-about-2, .section-about-4, .sectionH, .sectionE, .sectionI{}

.sectionG h3{margin-bottom: 0;}




.sectionF{width: 100%;
 
  background-image: url(''); /* 替换成你的图片路径 */
  background-attachment: fixed; /* 背景固定 */
  background-size: cover; /* 背景图片覆盖整个区域 */
  background-position: center; /* 背景居中显示 */
}



.sectionJ{

  



}


.sectionC{



} 






.style-2{text-align: center;margin-top:2rem;margin-bottom: 3rem;}
.style-2 .icon{margin-bottom: 3rem;}

.style-2 h3{margin-bottom: 1.5rem;}

.white{color:#fff!important; border-color: #fff!important;outline-color: #fff!important;}
.radius-2{border-radius: 2px;}
.radius-3{border-radius: 3px;}
.radius-4{border-radius: 4px;}
.radius-5{border-radius: 5px;}


.Hunk-video-bg {
  position: relative;
  width: 100%;
  height: 600px; /* 可以改成 400px 或其他高度 */
  overflow: hidden;
  
}



/* 视频本身 */
.Hunk-video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* 遮罩层可选 */
.Hunk-video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* 文字居中叠加 */
.video-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:3%;
}

.video-overlay h1 {


  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  color:#fff;
}

.video-overlay p{color: #fff;text-align: center;margin-bottom: 4.6rem;}



	.image-box-24{
		list-style-type: none;
		margin: 0px;
		padding: 0px;
		
	}

	.image-box-24{
		float: left;
		padding: 0px;
		position: relative;
		overflow: hidden;
	}

	.image-box-24:hover .caption{
		opacity: 1;
	}

	.image-box-24:hover img{
		opacity: 1;
		transform: scale(1.15,1.15);
		-webkit-transform:scale(1.15,1.15);
		-moz-transform:scale(1.15,1.15);
		-ms-transform:scale(1.15,1.15);
		-o-transform:scale(1.15,1.15);
	}


	.image-box-24 img{
		margin: 0px;
		padding: 0px;
		float: left;
		z-index: 0;
		width: 100%;
	}


	.image-box-24 .caption{
		cursor: pointer;
		position: absolute;
		opacity: 0;
		-webkit-transition:all 0.45s ease-in-out;
		-moz-transition:all 0.45s ease-in-out;
		-o-transition:all 0.45s ease-in-out;
		-ms-transition:all 0.45s ease-in-out;
		transition:all 0.45s ease-in-out;
		width: 100%;
		height: 100%;
	}

	.image-box-24 img{
		-webkit-transition:all 0.25s ease-in-out;
		-moz-transition:all 0.25s ease-in-out;
		-o-transition:all 0.25s ease-in-out;
		-ms-transition:all 0.25s ease-in-out;
		transition:all 0.25s ease-in-out;
	}
	.image-box-24 .blur{
		background-color: rgba(0,0,0,0.65);
		height: 100%;
		width: 100%;
		z-index: 5;
		position: absolute;
	}

	.image-box-24 .caption-text h3{
		color:#fff;
		font-size: 24px;
		text-align: center;
	}
	.image-box-24 .caption-text{
		z-index: 10;
		color: #fff;
		position: absolute;
		width: 100%;
		height: 100%;
		text-align: center;
		top:30%;
	}



/*-------------------- aboutpage ----------------------*/


.Hunk-header-banner h1{color: #fff;}


        .Hunk-header-banner { color:#fff;position: relative; width: 100%; height: 88vh; display: flex; justify-content: center; align-items: center; overflow: hidden; }
        .Hunk-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
        .Hunk-header-bg img { width: 100%; height: 100%; object-fit: cover; animation: zoomIn 15s ease-in-out infinite alternate; }
        .Hunk-header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(30, 60, 114, 0.7) 0%, rgba(42, 82, 152, 0.5) 100%); z-index: 1; }
        .Hunk-header-content { position: relative; z-index: 2; text-align: center; color: white; padding: 0 20px; max-width: 800px; display: flex;
    flex-direction: column;
    align-items: center;}
    
        .cta-button { display: inline-block; padding: 1.5rem 40px; background-color: #f48529; color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.5rem; transition: all 0.3s ease; box-shadow: 0 5px 1.5rem rgba(255, 107, 107, 0.4); }
        .cta-button:hover { background-color: #ff5252; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6); }
        @keyframes zoomIn { from { transform: scale(1); } to { transform: scale(1.1); } }
        
/* 动画定义 */

@keyframes flipInY { 0%{transform:perspective(400px)rotateY(90deg);opacity:0;}100%{transform:perspective(400px)rotateY(0);opacity:1;} }



.flipInY h1, .flipInY p, .flipInY .cta-button {opacity:0;transform:perspective(400px)rotateY(90deg);animation:flipInY 1s ease-out forwards;}



.custom-shape-divider-bottom-1761984315 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1761984315 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 49px;
}

.custom-shape-divider-bottom-1761984315 .shape-fill {
    fill: #FFFFFF;
}



/*----------team----------------------*/

        .Hunk-team {
           
            background: white;
            border-radius: 20px;
            box-shadow: 0 1.5rem 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f0f0f0;
            background-color: #f8f9fa;
        }
        
        .Hunk-team:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .team-header {
            background: white;
            padding: 30px 20px 10px;
            text-align: center;
            color: #333;
        }
        
        .avatar-container {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            border: 4px solid #f0f0f0;
            overflow: hidden;
            box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.1);
        }
        
        .avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
  
     
        
        .team-content {
            padding: 25px;
            background-color: #f8f9fa;
            }


/* 地图容器 */
.Hunk-map-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0 auto 40px;
}

.Hunk-world-map {
  width: 100%;
  height: auto;
  display: block;
}

/* 橙色标记点 + 涟漪效果 */
.Hunk-map-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #f48529;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(241, 146, 54, 0.7);
  cursor: pointer;
}

/* 涟漪伪元素 */
.Hunk-map-point::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(241,146,54,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.8;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* 提示文字（默认隐藏） */
.Hunk-map-label {
  margin-top: -30px;
  position: absolute;
  top: -25px; /* 点的上方 */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #222;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  pointer-events: none;
}

/* 悬停时显示文字 */
.Hunk-map-point:hover + .Hunk-map-label {
  opacity: 1;
  visibility: visible;
}


    /* Section 样式 */
    .Hunk-quality {
      background: #fff;
      padding: 60px 20px;
    }

    @media screen and ( max-width: 1200px){


       main.Hunk-container{padding: 20px;}



    }

    .Hunk-container {
      max-width: 1200px;
      margin: 0 auto;
      
    }



    main.Hunk-container{padding-bottom: 30px;padding-top: 0px;margin-top:-40px;}

    .Hunk-section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #222;
    }

    .Hunk-section-subtitle {
      text-align: center;
      font-size: 1.6rem;
      color: #666;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* 证书网格 */
    .Hunk-cert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-bottom: 60px;
    }

    .Hunk-cert img {
      width: 100%;
      border: 1px solid #eee;
      border-radius: 8px;
      transition: transform 0.3s;
    }

    .Hunk-cert img:hover {
      transform: scale(1.05);
    }

/*******------------------ timeline -----------------*/

     /* --- 核心容器 --- */

    a.selected { 
        color: #dc3545; 
    }
    #Hunk_timeline {
        max-width: 1000px;
        height: 600px;
        overflow: hidden;
        margin: 40px auto;
        position: relative;
    
    }

    /* --- CSS 虚线 (Hunk_timeline Spine) --- */
    #Hunk_timeline::before {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 0;
        left: 4px; 
        border-left: 2px dotted rgba(0, 0, 0, 0.2); 
        z-index: 1; 
    }

    /* --- 左侧日期列表 --- */
    #Hunk_timeline_dates {
        width: 15%;
        height: 600px;
        overflow: hidden;
        float: left;
        position: relative; 
        z-index: 5; 
    }

    @media (max-width: 800px){


        #Hunk_timeline_dates{width: 20%;}



    }
    
    #Hunk_timeline_dates ul, #Hunk_timeline_issues ul {
        list-style: none;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    #Hunk_timeline_dates li {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 2rem;
        padding-left: 20px;
        position: relative; /* 为伪元素定位做准备 */
        margin-bottom: 0;
       
    }

    /* 【新增】未选中状态的日期圆点 */
    #Hunk_timeline_dates li::before {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #6c757d; /* 灰色圆点 */
        /* 定位到虚线上，垂直居中 */
        left: 1px; 
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        transition: all 0.5s;
    }

    /* 【新增】选中状态的日期圆点 (放大+发光) */
    #Hunk_timeline_dates li.selected::before {
        width: 12px;
        height: 12px;
        left: 0px; /* 放大后需要微调位置 */
        background-color: #f48529; /* 强调色 */
 
    }
    
    #Hunk_timeline_dates a {
        display: block;
        line-height: 10rem;
        padding-bottom: 0px;
        transform: none;
        color: #333;
    }


    #Hunk_timeline_dates .selected, #Hunk_timeline_dates a:hover{ 
        font-size: 2.8rem;
        color: #f48529; 
    }

    /* --- 右侧内容列表 --- */
    #Hunk_timeline_issues {
        width: 70%;
        height: 600px;
        overflow: hidden;
        float: left;
        position: relative;
        z-index: 5;
    }
    
    #Hunk_timeline_issues li {
        width: 100%;
        height: 600px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    #Hunk_timeline_issues img {
        max-width: 300px;
        margin: 10px 30px 10px 50px;
        transition: all 1s ease-in-out;
        transform: scale(0.7);
        opacity: 0.7;
    }
    #Hunk_timeline_issues li.selected img {
        transform: scale(1.1);
        opacity: 1;
    }

    #Hunk_timeline_issues h3 { 
        color: #f48529; 
        font-size: 4.8rem; 
        text-shadow: none;
    }
    #Hunk_timeline_issues p {
      margin: 10px 20px;
        font-weight: normal; line-height: 22px;
        text-shadow: none;
    }

    /* --- 渐变遮罩 --- */
    #grad_top, #grad_bottom {
        width: 100%; height: 80px; position: absolute; z-index: 10;
        pointer-events: none;
    }
    #grad_top { top: 0; background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 100%); }
    #grad_bottom { bottom: 0; height: 100px; background: linear-gradient(to top, #fff 20%, rgba(255,255,255,0) 100%); }

    /* --- 底部控制栏容器 --- */
    .Hunk-timeline-navs {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center; 
        gap: 40px; 
        z-index: 20; 
    }

    /* --- SVG 按钮样式 --- */
    .nav-btn {
        width: 48px;
        height: 48px;
        cursor: pointer;
        fill: #333; 
        opacity: 0.6;
        transition: opacity 0.3s, transform 0.2s;
        background: rgba(0, 0, 0, 0.05); 
        border-radius: 50%;
        padding: 10px;
        border: 1px solid rgba(0,0,0,0.2);
    }
    .nav-btn:hover { 
        opacity: 1; 
        transform: scale(1.1); 
        fill: #dc3545; 
        border-color: #dc3545; 
        background: rgba(0,0,0,0.1); 
    }
    .nav-btn.disabled { opacity: 0.2; cursor: default; pointer-events: none; }


/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */




    /*----------------------------------------------------*/




    /* 渐入效果 */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* 响应式 */
    @media (max-width: 768px) {
      .Hunk-manufacturing-content {
        flex-direction: column;
      }
      .Hunk-stats {
        justify-content: center;
      }
      .Hunk-stat {
        text-align: center;
      }
    }


/* 单个卡片容器 */
.Hunk-values {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 6px 1.8rem rgba(16,24,40,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}
.Hunk-values:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(16,24,40,0.10);
}

/* 图标容器 */
.Hunk-value-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(241,146,54,0.07); /* light orange tint */
}

/* 标题 */
.Hunk-values h3 {
  font-size: 1.8rem;
  margin: 0;
  color: #111;
}



/*-------------------- button -------------------------*/

li#menu-item-196{padding:1.5rem;}

.Hunk-divider {
    background-color: rgba(0, 0, 0, .1);
    display: block;
    height: 3px;
    margin: 1em 0;
    max-width: 60px;
    width: 100%;
}

.reverse-2:hover{color: #f48529!important;background: #fff;outline:solid 1px #f48529;}
   .reverse-2{background: #f48529;color: #fff!important;}
   .reverse-2 span{margin-right: 3px;}
   
   .reverse-2 svg path{fill: #fff;transition: all .3s;}

   .reverse-2:hover svg path{fill: #f48529;transition: all .3s;}



.middle-btn {
    font-size: 1.8rem;
    padding: 1.5rem 2.2rem 1.5rem;
}
.small-btn{font-size: 1.5rem;padding: 1rem 1.5rem 1rem;}

   .fillout:after {
    content: "";
    position: absolute;
    width: 0; /* Initial width */
    height: 0; /* Initial height */
    top: 50%;
    left: 50%;
    background: #f48529;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease; /* Smooth transition */
    z-index: -1; /* Place behind the button */
}


.reverse-1, .fillin, .pulse, .btn-close, .fillup, .left2right, .fillout{color: #f48529;position: relative;overflow: hidden;z-index: 0;}

.reverse-2{position: relative;overflow: hidden;}


.left2right{display: inline-block;background-color: transparent;}


   .left2right::before {
  content: "";
  position: absolute;
  left: 0; /* 从左侧开始 */
  top: 0;
  width: 0%; /* 初始宽度为 0 */
  height: 100%; /* 覆盖按钮的整个高度 */
  background: #f48529; /* 填充颜色 */
  transition: width 0.3s ease; /* 平滑的动画效果 */
  z-index: -1; /* 伪元素在文本下方 */
}

.left2right:hover,
.left2right:focus {
  color: #fff; /* 文本颜色在 hover 时变为白色 */
}

.left2right:hover::before,
.left2right:focus::before {
  width: 100%; /* 宽度逐渐扩展至按钮的整个宽度 */
}


/*----------------- row section --------------------------------*/

@media (max-width: 992px) {

  .cta-style-1{

   flex-direction: column;

   align-items: center;


  }

  .cta-style-1 .cta-text{margin-bottom: 3rem;}



  .cta-style-1 .cta-text, .cta-style-1 .cta-btn{

    width: 100%;

    text-align: center;
  }

.sectionB{  


 



}}

.sectionB{  

    background-image: url("")!important;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}




.sectionB::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 黑色蒙版，40% 透明度 */
  z-index: -1; /* 放在背景图片上，但在内容下 */
}



.step h4, .impact h4{margin-top: 2rem;margin-bottom: 1rem;}

.impact{text-align: center;}

.impact-text{    background: #f6f6f6;
    padding: 2rem;
    min-height: 225px;border-radius: 5px;}

    .impact img{width: 200px!important;}


.section-life{background-color: #4CAF50;}

.Hunk-full-width{width: 100%;overflow: hidden;padding-top: 8rem;padding-bottom: 0rem;position: relative;z-index: 6;}




.sectionD .section-inner{
    max-width: 135rem;
}
.nospace .section-inner{max-width:100%!important;width:100%!important;}

.nospace .havespace{width: 120rem;margin: 0 auto;}

.Hunk-text{padding: 20px;}

.section-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 120rem;
    width: calc(100% - 4rem);
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}
.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/*-------------- category page ----------------------------------------*/


        
        .Hunk-category-hero {
            position: relative;
            overflow: hidden;
           
        }
        
        .Hunk-hero-image {
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        
        .Hunk-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
 

/*------------------------ blog page ---------------------------------*/


.Hunk-blog-post-header{max-width: 120rem;margin: 0 auto;text-align: center;padding-bottom: 1rem;border-bottom: 1px solid #eee;}

.Hunk-blog-post-title{font-size: 3rem;}


           
        .Hunk-blog-post {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            width: 100%;
         
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .Hunk-blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .Hunk-blog-image {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .Hunk-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .Hunk-blog-post:hover .Hunk-blog-image img {
            transform: scale(1.05);
        }

        .Hunk-blog-text {
            padding: 25px;
        }

        .Hunk-blog-title {
            margin-bottom: 15px;
  
    
        
            transition: color 0.3s ease;
        }

        .Hunk-blog-post:hover .Hunk-blog-title {
            color: #f48529;
        }

        .Hunk-blog-content p {
            color: #555;
            margin-bottom: 20px;
        }

        .Hunk-blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .Hunk-blog-date {
            display: flex;
            align-items: center;
            font-size: 1.4rem;
            color: #7f8c8d;
        }

        .Hunk-blog-date svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            fill: #f48529;
        }

        .Hunk-blog-button {
            background: #f48529;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1.4rem;
        }

        /* 卡片hover时按钮的样式变化 */
        .Hunk-blog-post:hover .Hunk-blog-button {
            background: #f48529;
            opacity: 0.7;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

.Hunk-related-text a{color: #555;}
.Hunk-related-text{margin: 1.5rem;}

.Hunk-related-posts:hover a{color:#f48529;}

.Hunk-related-section{margin-top: 3rem;}

      
/*------------------ TOC --------------------------------------------*/


        .Hunk-blog-wrapper{


            display: flex;
         
            margin: 0;
         
            position: relative;
            flex-direction: column;
            width: 1200px;
            margin: 0 auto;
            max-width: 100%;


        }
        
        .Hunk-mobile-toc-btn {
            display: none;
            position: sticky;
            top: 100px;
            left: 10px;
            z-index: 1001;
            background: #007bff;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.5rem;
            width: 220px;
            margin: 0 auto;
        }
        
        .Hunk-blog-container {
            display: flex;
            width: 100%;
            position: relative;
        }
        
        .Hunk_toc_sidebar {
            width: 25%;
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            background-color: #f8f9fa;
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .Hunk_toc_sidebar h2{font-size: 2rem!important;}
        
        .Hunk-blog-content {
            flex: 1;
            padding: 20px;
            max-width: 75%;
        }
        
        .Hunk-toc a {
            text-decoration: none;
            color: #333;
            display: block;
            padding: 5px 0;
            transition: color 0.2s;
        }
        
        .Hunk-toc a:hover {
            color: #007bff;
        }
        
        .Hunk-toc a.active {
            font-weight: bold;
            color: #007bff;
        }
        
        .Hunk-toc ul {
            list-style-type: none;
            padding-left: 15px;
        }
        
        .Hunk-toc li {
            margin: 5px 0;
            line-height: 1.4;
            list-style: none;
        }
        
        .Hunk-toc > ul {
            padding-left: 0;
        }
        
        h2, h3, h4 {
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            scroll-margin-top: 20px;
        }
        
        h2 {
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        h2:first-child {
            border-top: none;
            padding-top: 0;
        }
        
        p {
            margin-bottom: 1em;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .Hunk-mobile-toc-btn {
                display: flex;
                align-items: center;
            }
            
            .Hunk-blog-container {
                flex-direction: column;
            }
            
            .Hunk_toc_sidebar {
                width: 100%;
                height: auto;
                max-height: 50vh;
                position: fixed;
                top: 0;
                left: 0;
                z-index: 1000;
                transform: translateY(-100%);
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            .Hunk_toc_sidebar.active {
                transform: translateY(0);
            }
            
            .Hunk-blog-content {
                padding: 0;
                width: 100%;
                max-width: 100%;
                padding-top: 60px;
            }
            
            h2, h3, h4 {
                scroll-margin-top: 80px;
            }
        }
        
        html {
            scroll-behavior: smooth;
        }


/**---------------------------- Pagetitlebar ------------------------*/



.Hunk-hero-bar { background: linear-gradient(45deg, #f48529, #f6f6f6);
      background-size: 200% 200%;
      color: #222; /* 在浅色背景下用深色文字 */ padding: 30px 20px; text-align: center; }
.Hunk-hero-bar .Hunk-breadcrumb { font-size: 1.4rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.Hunk-hero-bar h1{ font-size: 3.5rem; font-weight: 700; }

.Hunk-hero-bar h1{margin:1.5rem 0;}

/*--------------------  bootstrap css  ----------------------------*/


/*------------------------------------- footer -------------------------------*/


.Hunk-footer-sns img{width: 25px;}

.Hunk-footer-sns span:hover{transform: translateY(-4px);}


.Hunk-footer-sns span {
    display: inline-block;
    transition: transform 0.2s ease;
}




 .footer-copyright{margin-bottom: 0;color: #eee;}

.footer-part-2 li::before {
    content: "\2713"; /* 使用勾符号 */
    font-size: 1.6rem; /* 设置勾的大小 */

    margin-right: 10px; /* 给勾和文字之间添加一些间距 */
    

  }

  .footer-part-2 ul{padding:0;}

  .footer-part-2 li{list-style: none;margin-bottom: 0;}

.Hunk-site-footer{width: 100%;overflow: hidden;padding-top: 4rem;padding-bottom: 8rem;position: relative;z-index: 6;background-color: #2d2d2d;color: #f5f5f5;}



.Hunk-site-footer h3{margin-bottom: 2rem;margin-top: 0;color: #fff;}

.Hunk-site-footer a, .Hunk-footer-bottom a{color:#f5f5f5;}

.Hunk-site-footer a:hover{color:#f48529;}
.site-footer-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 120rem;
    width: calc(100% - 4rem);
}

.footer-part-1 img{margin-bottom: 2rem;}
.footer-part-1>img{width: 260px;}

.Hunk-footer-bottom .col{padding:2rem 0;margin:0;}
.Hunk-footer-bottom{background-color: #2d2d2d;border-top: 1px solid #777;}




/*------------------------ page ---------------------------------------*/

.section-page h3, .section-page h2{margin-bottom: 2rem;}
.section-page .row{margin-bottom: 3rem;}


/*------------- banner slider -----------------------*/


/*------------------product page ---------------------*/

.Hunk-product-item a{display: flex;flex-direction: column;margin-bottom: 5rem;}

.Hunk-product-btn {
    outline: 1px solid #f48529;
    padding: 5px 1.5rem;
    border-radius: 5px;
    transition: all .3s;
    font-size: 1.8rem;
    display: inline-block;
}

.Hunk-product-btn:hover{

    background-color:#f48529;

    color: #fff;

    transition: all .3s;


}



   .light-to-heavy:hover{ opacity:1;box-shadow: inset 0 0 0 100px rgb(0 0 0 / 20%);}

   .small-button a {
    line-height: 2.4em;
    min-height: 2.5em;
    padding: 0 1.2em;
    font-size: .97em;
    letter-spacing: .03em;
}
.image-box-img{overflow: hidden;}

.Hunk-image-box img{transition: all .3s;}

.Hunk-image-box p{color: #555;}

.Hunk-image-box{width:100%;transition: opacity .3s,transform .3s,background-color .3s;}
.Hunk-button{transition: opacity .3s,transform .3s,background-color .3s;}

.image-box-img, .image-box-text{transition: opacity .3s,transform .3s,background-color .3s}
.txtcenter{text-align: center;}

.image-box-text{ padding-top: .7em;
    padding-bottom: 1.4em;
    position: relative;
    width: 100%;
    font-size: .9em;}




#product-specifications{margin-bottom: 3rem;}



/* 粘性导航 */
        .Hunk-sticky-nav {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0px;
            z-index: 99;
            transition: all 0.3s;
        }
        
        .Hunk-sticky-nav.Hunk-hidden {
            transform: translateY(-100%);
            opacity: 0;
        }
        
        .Hunk-sticky-nav-container {
            display: flex;
            justify-content: center;
            overflow-x: auto;
            padding: 10px 0;
        }
        
        .Hunk-sticky-nav-links {
            display: flex;
            list-style: none;
            gap: 0px;
            flex-wrap: wrap;
        }
        
        .Hunk-sticky-nav-links li {
            white-space: nowrap;
            margin-bottom: 0;
        }
        
        .Hunk-sticky-nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            padding: 8px 1.5rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: block;
        }
        
        .Hunk-sticky-nav-links a:hover,
        .Hunk-sticky-nav-links a.Hunk-active {
            background-color: #f48529;
            color: white;
        }
        
        /* 产品标题和概览 */
      
        
        .Hunk-product-excert {
            flex: 1;
            padding:0 30px;
            min-width: 300px;
        }
        
        .Hunk-product-excert h1 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .Hunk-product-subtitle {
            font-size: 1.8rem;
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .Hunk-price {
            font-size: 28px;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        
        .Hunk-cta-buttons {
            display: flex;
            gap: 1.5rem;
        }
        
   

        
 section#product-videos {
    margin-bottom: 3rem;
}

   .Hunk-product-section > h2 {
   
    padding-top: 80px; /* 添加内边距防止遮挡 */
    margin-top: -80px!important; /* 使用负边距抵消内边距，保持布局不变 */
}

        
        /* 产品图片展示区 */
        .Hunk-product-imgs {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .Hunk-main-image {
            width: 100%;
            height: auto;
           
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }
        
        .Hunk-main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .Hunk-image-thumbnails {
            display: flex;
            padding: 10px 0;
           
            
        }
        
        .Hunk-thumbnail {
            max-width: 80px;
            height: auto;
            margin-right: 10px;
            border: 2px solid transparent;
            cursor: pointer;
            overflow: hidden;
             flex: 1 1 20%; 
        }
        
        .Hunk-thumbnail.Hunk-active {
            border-color: #4a6ee0;
        }
        
        .Hunk-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
     
        
      
     
     
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .Hunk-product-header {
                flex-direction: column;
            }
            
            .Hunk-product-title, .Hunk-product-imgs {
                max-width: 100%;
            }
            
            
            
           
            .Hunk-nav-links {
                display: none;
            }
            
            .Hunk-sticky-nav {
                top: 60px;
            }
            
            .Hunk-sticky-nav-container {
                justify-content: flex-start;
            }
        }


     /* 品质网格样式 */
        .Hunk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .Hunk-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .Hunk-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 1.5rem 40px rgba(0, 0, 0, 0.12);
        }
        
        .Hunk-image {
            height: 220px;
            overflow: hidden;
        }
        
        .Hunk-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .Hunk-item:hover .Hunk-image img {
            transform: scale(1.05);
        }
        
  
        
        .Hunk-icon {
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 1.5rem;
        }
        
        .Hunk-item h4 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: #2c5530;
        }
        
        .Hunk-item p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }


.section-product-2{background-color: #f6f6f6;}

.entry-content h3{font-size: 2.5rem;}


.btn-subcat {
    display: inline-block;
    padding: 8px 1.5rem;
    margin: 5px;
    background-color: #fff;
    color: #555;
    border:2px solid #555;
    border-radius: 50px;
    text-decoration: none;
}
.btn-subcat:hover {
    background-color: #f48529;
    color: #fff;
}

.sub-category-buttons{display: flex;justify-content: flex-start;flex-wrap: wrap;}



.product-page .page-header{

    background: linear-gradient(45deg, #f48529, #f6f6f6);

  color: #fff;



}




/*------------------------- others ---------------------------------------*/

.my-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 1px solid #999;
    height: 50px;
}

.search-button{

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    padding: 10px;
    height: 50px;

}

input[type="search"].search-input{background-color: #fff;border: none;}



.Hunk-product-images {
    float: left;
    padding: 0;
    width:50%;
    max-width: 570px;
        display: flex;

    flex-direction: column-reverse;
}

.Hunk-product-images img {
    width: 100%;
  
    height: auto;
    border: 1px solid #ccc;
}

.Hunk-product-images img.focused {
    border: #fbb20f 2px solid;
}




#Hunk-focused-image {
      padding: 0;
      max-width: 600px;
}



.Hunk-product-info {
    width:50%;
    padding: 0;
    line-height: 1.5;
  
}

.Hunk-product-info ul {
    margin: 10px 0px;
    padding: 0;
}

.Hunk-product-info li {
    cursor: pointer;
    list-style-type: none;
    display: inline-block;
    color: #F0F0F0;
    text-shadow: 0 0 1px #666666;
    font-size: 1.4rem;
}

.Hunk-product-info .selected {
    color: #e4a400;
    text-shadow: 0 0 5px #ffb900;
}

.product-title {
    font-size: 1.5em;
}




.Hunk-product-header {

       display: flex;
    flex-direction: row;

    max-width:1200px;
  margin: 0 auto;
  
    overflow: auto;
 
    padding-top: 0px;
    margin-top: 30px;
    text-align: left;
    gap:20px;
    margin-bottom: 3rem;
}

.Hunk-product-images .thumbnail {
    width: 80px;
    margin-bottom: 5px;
    padding: 0px;

 
   
        object-fit: cover;
}

#thumbnail-container {
    width: 100%;
    cursor: pointer;
    display: flex;
}

.focused {
    border: 1px solid #e77600 !important;
    box-shadow: 0 0 3px 2px rgba(228, 121, 17, .5);
}





/* Responsive Styles */





@media screen and (max-width: 560px) {
    #Hunk-focused-image {
        float: none;
    }
    #thumbnail-container {
        width: auto;
        margin-top: 0px;
    }
}



@media screen and (max-width:880px) {

    .Hunk-product-excert{padding:0;}

     .Hunk-product-header {
        display: flex;
        flex-direction: column;
    }

    #thumbnail-container{display: flex;flex-wrap: nowrap; /* 禁止换行 */
    justify-content: flex-start; /* 靠左对齐 */}

    #thumbnail-container img{

         flex: 0 0 20%;/* 强制每张图片占用 1/5 的宽度 */
    max-width: 20%;
    object-fit: cover; /* 确保图片不会拉伸变形 */


    }
    .Hunk-product-images {
        padding: 10px;
    }
    .Hunk-product-info {
        padding:  0 10px;
    }
    .Hunk-product-header{
        width:100%;
    }
}


.forminator-description{display: none!important;}




.product-post, .normal-page{
  width: 100%;
  min-height: 100px!important;
  background-image: 
    url(''),
    url(''),
    url(''),
    url('');
  background-size: 60px 60px;
  background-repeat: no-repeat;
  background-position: 
    10% 20%, 
    30% 70%, 
    70% 30%,
    90% 90%;
}


.normal-post {
  width: 100%;
  min-height: 100px!important;
  background-image: 
    url(''),
    url(''),
    url(''),
    url('');
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: 
    10% 20%, 
    30% 70%, 
    70% 30%,
    90% 90%;
}

.product-post .page-header-info, .normal-post .page-header-info{

  min-height: 100px!important;
}

.product-post{padding-bottom: 2rem;}



/*------------------------- others ---------------------------------------*/

.lyt-visually-hidden{display: none;}

.video{margin-bottom: 3rem;}




.product-content ol, .product-content ul{margin-bottom: 1rem;}

.menu-btn{font-size: 1.4rem!important;}




.ff-btn{


  background-color:#f48529!important;
}


.call{display: none!important;}


    .Hunk-sticky-icon {
      z-index: 100;
      position: fixed;
      top: 35%;
      right: 0;
      width: 220px;
      display: flex;
      flex-direction: column;
    }
    .Hunk-sticky-icon a {
      transform: translate(160px, 0);
      border-radius: 50px 0 0 50px;
      text-align: left;
      margin: 2px;
      text-decoration: none;
      text-transform: uppercase;
      padding: 10px;
      font-size: 1.8rem;
      font-family: 'Oswald', sans-serif;
      transition: all 0.4s;
      color: #FFF;
      display: flex;
      align-items: center;
    }
    .Hunk-sticky-icon a i {
      background-color: #FFF;
      height: 40px;
      width: 40px;
      color: inherit;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      margin-right: 1.5rem;
      transition: transform 0.4s;
    }
    .Hunk-sticky-icon a:hover {
      transform: translate(0, 0);
      color: #FFF;
    }
    .Hunk-sticky-icon a:hover i {
      transform: scale(1.2);
    }
    
    /* Specific colors for each social icon */
    .email { background-color: #f48529; }
    .email i:before{color: #f48529;}
    .whatsapp { background-color: #25d366; }
    .whatsapp i:before{color: #25d366;}

     .Hunk-sticky-icon i:before{font-size: 25px;}
   

    /* Responsive styles for mobile */
    @media screen and (max-width: 768px) {

      .Hunk-sticky-icon i:before{font-size: 20px;}



      .Hunk-sticky-icon span{text-transform: capitalize;margin-top: 5px;}

      .call{background-color: #34b7f1;display: flex!important;}

      .call i:before{color:#34b7f1;}


      .Hunk-sticky-icon {
  display: flex;
  justify-content: space-between; /* 使内容水平分布 */
  position: sticky;
  bottom: 0;
  width: 100%;  
  z-index: 1000000;
  top: auto;
  right: 0;
  flex-direction: row;
 
       
}

.Hunk-sticky-icon a {
  flex: 1; /* 每个元素占1份 */
  text-align: center;
  padding: 10px 0;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
      transform: translate(0, 0);
        padding: 8px 10px;
        font-size: 1.4rem;
        margin: 0;

    border-radius: 0px;
}


      .Hunk-sticky-icon a i {
        margin-right: 0;
        height: 30px;
        width: 30px;
        line-height: 30px;
      }
    }
/*-------------------------------------*/



 .Hunk-heading-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ccc;
      padding: 0;
      margin-bottom: 2rem;

    }

  
    .right {
      display: flex;
      align-items: center;
     
    }



/*-------------------- video -----------------------------------------*/


lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    max-width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

lite-youtube::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 0px;
    padding-bottom: 0px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

lite-youtube>.lty-playbtn {
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');
    filter: none;
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube:hover>.lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated>.lty-playbtn {
    opacity: 0;
    pointer-events: none;
}


lite-youtube{max-width: 1200px!important;}

        .Hunk-video-gallery {
            display: flex;
            justify-content: space-around;
            width: 80%;
        }

        .video-item {
            position: relative;
            width: 100%;
            cursor: pointer;
        }

        .video-item img {
            width: 100%;
            border-radius: 10px;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 50px;
            color: white;
            opacity: 0.8;
        }

        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            width: 100%;
            max-width: 800px;
            
            border-radius: 10px;
            
        }

        .video-close {
            position: absolute;
            top: -40px;
            right: -30px;
            font-size: 30px;
            cursor: pointer;
            color: #fff;
        }

        @media screen and (max-width: 820px) {

            .video-close{right:10px;}



        }



/*----------------------------------Social sharing------------------------------------------------------*/

 .Hunk-sharing-1{


      padding: 1rem 0;
      background-color: #f6f6f6;
      text-align: center;
    }

    .Hunk-sns {
      margin:2rem 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .Hunk-sns a {
      text-decoration: none;
      color: #fff;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
  
      transition: border-radius 0.4s linear;
    }

    .Hunk-sns a svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      transition: transform 0.4s linear;
    }

    .Hunk-sns a.fb { background-color: #3b5998; }
    .Hunk-sns a.tw { background-color: #00aced; }
    .Hunk-sns a.reddit { background-color: #ff4500; }
    .Hunk-sns a.whatsapp { background-color: #25d366; }
    .Hunk-sns a.pinterest { background-color: #cb2027; }
    .Hunk-sns a.insta { background-color: #bc2a8d; }
    .Hunk-sns a.in { background-color: #007bb6; }

    /* hover 动画 */
    .Hunk-sns a:hover {
     border-radius: 50%;
    }


  /*------------------------related posts -------------------------------------------*/



.Hunk-related-posts li{list-style: none;}

.related-title{margin: 10px 0;padding:10px;}
.related-pro{margin-bottom: 20px;transition: all .5s;border-radius: 3px;}


.Hunk-related-posts .row>*{margin-top: 0!important;}





/*------------------------ search box --------------------------*/

.Hunk-search-icon-wrapper{display: flex;align-items: center;cursor: pointer;margin-left: 20px;}

.Hunk-search-icon-wrapper img{vertical-align: middle;}


.Hunk-search-icon-wrapper {
  position: relative;
  
}


.Hunk-search input[type="submit"] {

    background-color: #f48529;

    padding: 0 20px!important;
}
.Hunk-search-form {
  display: none;
  position: absolute;
  top: 100%; /* 出现在图标下方 */
  right: 0;
  width: 300px;
  padding: 8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1000;
}

.Hunk-search-form input[type="search"] {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-form{display: flex;gap: 10px;justify-content: center;}





/*----------------------- modal --------------------------------*/

/*---------------------modal css ---------------*/

form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style){background-color: #096f79;}

/* -- Needed CSS -- */
.modal-wrapper {
  display: none;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.modal-wrapper.is-open {
  display: block;
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
}

.modal-body {
  -webkit-animation: pop 0.5s ease;
          animation: pop 0.5s ease;
  width: 90%;
  max-width: 590px;
  margin: 0 auto;
}

header {
  position: relative;
}

.close {
  position: absolute;
  top: -20px;
  right: -20px;
}

@-webkit-keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* -- CSS from here on is not needed -- */
* {
  box-sizing: border-box;
}





.modal-body {
  margin: 100px auto;
 
  border-radius: 5px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.35);
  background-color: #fff;

  z-index: 99999;
}
.modal-body header {
  background-color: #FFC107;
  margin: 0;
  padding: 10px 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #FFECB3;
}
.modal-body img {
  max-width: 100%;
}
.modal-body .modal-main {
  padding: 20px;
  width: 100%;
  position: relative;

}

.modal-body .close {

  border: 0;
  outline: 0;
  font-size: 1.5rem;
  background-color: transparent;
  padding:0;

  position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==);
}
.modal-body p {
  color: #727272;
}
.modal-body .cta {
  background-color: #FFC107;
  transition: background-color 0.3s ease;
  color: #FFECB3;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: block;
  width: 200px;
  text-align: center;
  margin: 20px auto;
}
.modal-body .cta:hover, .modal-body .cta:active {
  background-color: #FFA000;
}


.transparent{background: transparent!important;}

.txtcenter{text-align: center;}

.post-image img{margin-bottom:2rem;}
.post-title{margin-top: 0;}

.badge-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: #f48529;
    line-height: 1;
    color: #fff;
    font-weight: bolder;
    padding: 1px;
    white-space: nowrap;
    -webkit-transition: background-color .3s, color .3s, border .3s;
    -o-transition: background-color .3s,color .3s,border .3s;
    transition: background-color .3s, color .3s, border .3s;
    border-radius: 100%;
    font-size: 1.2rem;
    line-height: 1.3;
}
.move-up:hover{transform: translateY(-6px); box-shadow: 0 30px 40px 0 rgba(0, 0, 0, .2);}

.Hunk-posts {
    box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    position: relative;
    padding-bottom: 2rem;
    transition: all .5s;
    height: 100%;
}

.Hunk-posts button{margin-top: 2rem;}

.post-title {
    color: #555;
    padding: 0 10px;
}

.post-des {
    color: #777;
    padding: 0 1.5rem;

  }


.badge.top {
    left: 0;
}
.badge.top {
    left: 0;
}
.badge.post-date {
    top: 3%;
}
.badge-outline, .badge-circle {
    margin-left: -.8em;
}
.badge {
    display: table;
    z-index: 20;
    pointer-events: none;
    height: 3.5em;
    width: 3.5em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.absolute {
    position: absolute !important;
}

#Hunk-breadcrumbs a, #Hunk-breadcrumbs{color:#555;}

.blog-page #Hunk-breadcrumbs a, .blog-page #Hunk-breadcrumbs{color: #555;}

#Hunk-breadcrumbs{margin-top:10px;}

.Hunk-Contact{background:#f48529;padding:60px; color:#eee;}
.Hunk-Contact h2{color:#fff;}
 .Hunk-Contact a{color:#eee;}


/*-------------------------------  contact page -----------------------------------*/

.Hunk-contact-item img{width: 40px;height: 40px;margin-right: 1.5rem;}

.Hunk-contact-item h4{margin-top: 0;font-size: 2rem;margin-bottom: 1rem;}

.Hunk-contact-item{display: flex;flex-direction: row;box-shadow: 0 4px 1.5rem rgba(0, 0, 0, 0.08), 
            0 2px 5px rgba(0, 0, 0, 0.05);

            padding: 2rem;

            height: 100%;

            min-height: 136px;

            border-radius: 5px;
}

        .Hunk-contact-content {
            display: flex;
            flex-wrap: wrap;
            margin: 40px 0;
            gap: 30px;
        }
        
        .Hunk-company-info {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.05);
        }
        
        .Hunk-company-info h2, .contact-form-container h2 {
        
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 20px;
           
           
        }
        
        .company-description {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 25px;
        }
        
        .contact-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem 1.5rem 0px;
            border-radius: 8px;
            background: #f8f9fa;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 0;
        }
        
        .contact-card h3 {
         
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .contact-card p {
           
        }

        .contact-form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.05);
    height: 100%;


}
        @media (max-width: 1024px) {


            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }



        }


          @media (max-width: 768px) {
            .Hunk-contact-content {
                flex-direction: column;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .Hunk-hero-content h1 {
                font-size: 3.2rem;
            }
            
            .Hunk-hero-content p {
               

            }

        }
/*----------------------------------Gallery ----------------------------------------*/

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.10.0
 * @url https://github.com/feimosi/baguetteBox.js
 */#baguetteBox-overlay{display:none;opacity:0;position:fixed;overflow:hidden;top:0;left:0;width:100%;height:100%;z-index:1000000;background-color:#222;background-color:rgba(0,0,0,.8);-webkit-transition:opacity .5s ease;transition:opacity .5s ease}#baguetteBox-overlay.visible{opacity:1}#baguetteBox-overlay .full-image{display:inline-block;position:relative;width:100%;height:100%;text-align:center}#baguetteBox-overlay .full-image figure{display:inline;margin:0;height:100%}#baguetteBox-overlay .full-image img{display:inline-block;width:auto;height:auto;max-height:100%;max-width:100%;vertical-align:middle;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);-moz-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6)}#baguetteBox-overlay .full-image figcaption{display:block;position:absolute;bottom:0;width:100%;text-align:center;line-height:1.8;white-space:normal;color:#ccc;background-color:#000;background-color:rgba(0,0,0,.6);font-family:sans-serif}#baguetteBox-overlay .full-image:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#baguetteBox-slider{position:absolute;left:0;top:0;height:100%;width:100%;white-space:nowrap;-webkit-transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,transform .4s ease;transition:left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease}#baguetteBox-slider.bounce-from-right{-webkit-animation:bounceFromRight .4s ease-out;animation:bounceFromRight .4s ease-out}#baguetteBox-slider.bounce-from-left{-webkit-animation:bounceFromLeft .4s ease-out;animation:bounceFromLeft .4s ease-out}@-webkit-keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@-webkit-keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}@keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}.baguetteBox-button#next-button,.baguetteBox-button#previous-button{top:50%;top:calc(50% - 30px);width:44px;height:60px}.baguetteBox-button{position:absolute;cursor:pointer;outline:0;padding:0;margin:0;border:0;-moz-border-radius:15%;border-radius:15%;background-color:#323232;background-color:rgba(50,50,50,.5);color:#ddd;font:1.6em sans-serif;-webkit-transition:background-color .4s ease;transition:background-color .4s ease}.baguetteBox-button:focus,.baguetteBox-button:hover{background-color:rgba(50,50,50,.9)}.baguetteBox-button#next-button{right:2%}.baguetteBox-button#previous-button{left:2%}.baguetteBox-button#close-button{top:20px;right:2%;right:calc(2% + 6px);width:30px;height:30px}.baguetteBox-button svg{position:absolute;left:0;top:0}.baguetteBox-spinner{width:40px;height:40px;display:inline-block;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px}.baguetteBox-double-bounce1,.baguetteBox-double-bounce2{width:100%;height:100%;-moz-border-radius:50%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:bounce 2s infinite ease-in-out;animation:bounce 2s infinite ease-in-out}.baguetteBox-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounce{0%,100%{-webkit-transform:scale(0);-moz-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}}


.gallery-block.grid-gallery{
  padding-bottom: 0px;
  padding-top: 0px;
}

.gallery-block.grid-gallery .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block.grid-gallery .heading h2{
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover{
  opacity: 0.8;
}

.gallery-block.grid-gallery .item img{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.gallery-block.grid-gallery .item{
  margin-bottom: 0px;
}

@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}


/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;

}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}




/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none!important;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;

  scroll-behavior: smooth;
}

body{display: flex;}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body, button,
input,
select,
optgroup,
textarea {
	font-family: "Rubik", sans-serif;
  font-weight: normal;

	line-height: 1.65;
	color: #333;
}

h1, h2, h3, h4, h5, h6{color: #000;font-family: "Rubik", sans-serif;}

h3{font-size: 2rem;}

h2{margin-bottom: 3rem;}
h3, h4{margin-bottom: 2rem;}



h1 {

	font-weight: 700;
	line-height: 1.25;
}

.single h1{font-size: 3rem;}

@media (min-width: 992px) {

  .single h1{font-size: 3rem;}

  .single h2{font-size: 2.8rem;
        scroll-margin-top: 150px;

        margin: 3rem 0;


      }

	h1 {
		font-size: 3.5rem;
		line-height: 1.3;
	}
}

h2 {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.25;
}

@media (min-width: 992px) {
	h2 {
		font-size: 3.5rem;
	}
}





h5 {
	font-size: 1.8rem;
	font-weight: 400;
}

h6 {
	font-size: 1.5rem;
	font-weight: 400;
}

p {
	margin-top: 0;
	margin-bottom: 1.5em;
    font-size:1.6rem;
}



dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #fff;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	overflow: auto;
	padding: 1.6em;
	border: 1px solid #BEC0B9;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	cursor: help;
	
}

mark,
ins {
	text-decoration: none;
	background: #fff9c0;
}

big {
	font-size: 125%;
}


}

body:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	position: fixed;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 20;
}

body.sidebar-opened {
	overflow: hidden;
}

body.sidebar-opened:before {
	opacity: 0.8;
	visibility: visible;
}



hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	padding: 0 0 0 1em;
}

li {
	margin-bottom: 0.5em;
}

li:last-child {
	margin-bottom: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-top: 1em;
	margin-bottom: 0;
	margin-left: 1em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

figure {
	margin: 0
}

table {
	width: 100%;
	margin: 0;
	color: #333;
	border-collapse: collapse;
	
}

@media only screen and (max-width: 840px) {
table {
margin-bottom: 0;
overflow: hidden;
overflow-x: scroll;
display: block;
white-space: nowrap;
}
}


table th,
table td {
	padding: 10px;
	border-bottom: 1px solid #eee;
}

@media (min-width: 992px) {
	table th,
	table td {
		padding: 1.8rem 20px;
	}
}

table th {
	font-weight: 500;
	text-align: left;
}

table tbody:last-child tr:last-child th,
table tbody:last-child tr:last-child td,
table tfoot:last-child tr:last-child th,
table tfoot:last-child tr:last-child td {
	border-bottom: 0;
}

/* Links
--------------------------------------------- */
a {
	color: #f48529;
	text-decoration: none;
	transition: 0.3s;
}

a:hover, a:focus, a:active {
	text-decoration: none;
    color: #f48529;
}






/* Forms
--------------------------------------------- */
button, 
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-block;
	position: relative;
	padding: 1em 2em;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
	
	text-decoration: none;
	cursor: pointer;
	border: 0;
	transition: 0.3s;
	
	color: #F0F0F0;
	z-index: 1;
	letter-spacing: .5px;

	
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],

input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
	display: block;
	width: 100%;
	padding: 10px 1.8rem;
	font-weight: 500;
	color: #252525;
	background-color: #fff;
	border: 1px solid #BEC0B9;
	border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,

input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
	outline: auto;
}

select {
	height: 55px;
	padding-right: 35px;
	background-image: url("images/icon-angle-down.svg");
	background-repeat: no-repeat;
	background-position: calc(100% - 1.8rem) center;
	appearance: none;
}

label {
	display: inline-block;

}

[type="checkbox"],
[type="radio"] {
	display: inline;
	margin: 2px 10px 0 0;
}

[type="checkbox"] + label, [type="radio"] + label {
	display: inline;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site-main.template-canvas, .site-main.template-canvas-header {
	padding-bottom: 0;
}

.site-main.template-canvas .page-header, .site-main.template-canvas-header .page-header {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */



/* Posts and pages
--------------------------------------------- */
.site-header {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

.home .site-header-inner{border-bottom: none;}

.site-header-inner {
	display: flex;
	justify-content: space-between;
	padding: 5px 20px;
	border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
	.site-header-inner {
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

@media (min-width: 1470px) {
	.site-header-inner {
		padding-left: 0;
		padding-right: 0;
	}
}

.site-header .site-branding {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	padding-right: 20px;
}

.site-header .site-branding .site-title {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 30px;
	word-wrap: break-word;
}

.site-header .site-branding .site-title a {
	color: #252525;
	text-decoration: none;
}

.site-header .custom-logo-link {
	margin-right: 10px;
}

.site-header .custom-logo-link img {
	display: block;
}

.site-header .menu-toggle {
	position: relative;
	z-index: 10;
	display: block;
	padding: 0;
	color: #252525;
	background: none;
	border-radius: 0;
}

@media (min-width: 992px) {
	.site-header .menu-toggle {
		display: none;
	}
}

.site-header .menu-toggle .bar1,
.site-header .menu-toggle .bar2,
.site-header .menu-toggle .bar3 {
	display: block;
	height: 3px;
	margin: 10px auto;
	text-align: center;
	background-color: #252525;
	transition: 0.25s;
}

.site-header .menu-toggle .bar1,
.site-header .menu-toggle .bar3 {
	width: 40px;
}

.site-header .menu-toggle .bar2 {
	width: 20px;
}

.site-header .menu-toggle.active .bar1 {
	transform: rotate(-45deg) translate(-8px, 8px);
}

.site-header .menu-toggle.active .bar2 {
	width: 0;
}

.site-header .menu-toggle.active .bar3 {
	transform: rotate(45deg) translate(-10px, -10px);
}

.site-header .menu-toggle:hover, .site-header .menu-toggle:focus {
	background-color: transparent;
}

.main-sidebar-toggle-button {
	padding: 0.8125em 1.75em;
	margin: 0 0 40px 20px;
	color: #252525;
	background: linear-gradient(#BEC0B9, #BEC0B9) no-repeat;
	background-size: 55% 100%;
}

@media (min-width: 992px) {
	.main-sidebar-toggle-button {
		margin-left: 30px;
		margin-bottom: 0;
	}
}

.site-footer {
	padding: 0 20px;
	color: #8F908A;
	background-color: #252525;
}

.site-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.site-footer .site-info {
	padding: 50px 0;
	font-size: 0.9375em;
	font-weight: 700;
	color: #8F908A;
	text-align: center;
}

.site-main {
	padding: 0 20px 50px;
}

@media (min-width: 992px) {
	.site-main {
		padding: 0 50px 11.5rem;
	}
}

.updated:not(.published) {
	display: none;
}

.page-links {
	margin: 0 0 1.5em;
	clear: both;
}

.entry-content::after {
	display: table;
	clear: both;
	content: "";
}

.entry-title,
.page-title {
	word-wrap: break-word;
}

.page-header {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 278px;
	margin: 0;
	text-align: center;
	color: #555;
	background-color: #f6f6f6;
	z-index: 5;
}


.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 黑色半透明蒙板 */
  z-index: 4;
}

.single .page-header::before {


  background: none;


}

@media (min-width: 992px) {
	.page-header {
		margin: 0;
	}
}

.page-header .page-title,
.page-header .entry-title {
	position: relative;
	z-index: 5;
	margin: 0;
	color: #fff;
	max-width: 100%;
}

.page-header-info {
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	min-height: 278px;
	padding: 10px 20px;
	text-align: center;
}

.page-header .post-thumbnail,
.page-header .header-images {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.page-header .post-thumbnail img,
.page-header .header-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-header .entry-meta {
	justify-content: center;
	color: #555;
}

.page-header .archive-description {
	max-width: 920px;
	margin-top: 30px;
}

.page-header .breadcrumbs-wrapper {
	position: relative;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 10px 20px;
	font-size: 1.5rem;
	color: #8F908A;
	background-color: #434343;
}

.page-header .breadcrumbs-wrapper > span {
	display: inline-block;
	margin: 0 10px;
}

.page-header .breadcrumbs-wrapper a {
	color: #F0F0F0;
	text-decoration: none;
}

.page-header .breadcrumbs-wrapper a:hover {
	text-decoration: underline;
}

.page-header .header-image {
	position: absolute;
	top: 0;
	left: 0;
}

.page-header .header-image img {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
}

.page-header + .posts-wrapper {
	padding-top: 0;
}

.cat-links a {
	display: inline-block;
	text-decoration: none;
	margin-right: 10px;
}

.cat-links a:hover {
	text-decoration: underline;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	gap: 1.5rem 32px;
	color: #434343;
}

.entry-meta > span {
	position: relative;
	display: inline-block;
	line-height: 1;
}

.entry-meta > span:not(:last-child)::after {
	position: absolute;
	top: 0;
	right: -1.6rem;
	bottom: 0;
	width: 1px;
	height: 1.5rem;
	margin: auto;
	content: '';
	background-color: #555;
}

.entry-meta a {
	color: inherit;
	text-decoration: none;
}

.entry-meta a:hover {
	color: #fff;
}

.entry-footer {
	max-width: 1400px;
	margin: 50px auto;
}

.entry-footer .edit-link {
	display: block;
	padding: 30px 0;
}

.single-post .single-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 68px;
	text-align: center;
}

.single-post .single-header img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-post .entry-title {
	position: relative;
	z-index: 5;
	margin: 0 0 20px;
	
	font-weight: 700;
	line-height: 1.25;
	color: #333;
}

.single-post .single-info {
	text-align: center;
}

.single-post .entry-footer {
	max-width: 920px;
}

.posts-wrapper {
	padding-top: 40px;
}

@media (min-width: 768px) {
	.posts-wrapper {
		padding-top: 85px;
	}
}

.posts-wrapper .grid-posts {
	display: grid;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
	.posts-wrapper .grid-posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {


	.posts-wrapper .grid-posts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.posts-wrapper .loop-post {
	max-width: 920px;
	margin: 0 auto 40px;
	background-color: #fff;
}

@media (min-width: 768px) {
	.posts-wrapper .loop-post {
		margin-bottom: 85px;
	}
}

.posts-wrapper .loop-post .entry-title {
	margin-top: 0;
	font-size: 32px;
	line-height: 1.25em;
}

.posts-wrapper .loop-post .loop-post-content {
	margin-top: 35px;
}

.posts-wrapper .loop-post-grid {
	background-color: #fff;
}

.posts-wrapper .loop-post-grid .entry-title {
	font-size: 22px;
}

.posts-wrapper .loop-post-content {
	position: relative;
	padding: 22px 25px;
}

.posts-wrapper .loop-post-content .entry-title {
	margin-bottom: 1.5rem;
}

.posts-wrapper .loop-post-content .entry-title a {
	color: #252525;
	text-decoration: none;
}

.posts-wrapper .loop-post-content .entry-title a:hover {
	color: #f48529;
}

.posts-wrapper .loop-post-content .entry-meta {
	margin-bottom: 20px;
}

.posts-wrapper .loop-post-content .entry-content * {
	max-width: 100%;
}



.posts-wrapper .post-thumbnail {
	display: flex;
	max-height: 400px;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	background: #252525;
}

@media (min-width: 992px) {
	.posts-wrapper .post-thumbnail {
		max-height: 600px;
	}
}

.posts-wrapper .post-thumbnail img {
	object-fit: cover;
	width: 100%;
	object-position: center;
	transition: 0.25s;
}

.posts-wrapper .post-thumbnail:hover img {
	opacity: 0.75;
}

.posts-wrapper .post-thumbnail + .loop-post-content {
	margin-top: 0;
}

.posts-wrapper .sticky-post-indicator {
	position: absolute;
	bottom: 100%;
	left: 24px;
	padding: 5px 1.6rem;
	font-size: 1rem;
	font-weight: 500;
	color: #F0F0F0;
	text-transform: uppercase;
	background-color: #252525;
	letter-spacing: 0.5px;
}

.tags-links {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 0;
	color: #252525;
	border: solid #252525;
	border-width: 1px 0;
}

.tags-links a {
	margin-right: 35px;
	color: inherit;
	text-decoration: none;
}

.tags-links a::before {
	content: '#';
}

.tags-links a:focus, .tags-links a:hover {
	color: #f48529;
	text-decoration: none;
}

.not-found .page-content {
	max-width: 920px;
	padding: 100px 20px;
	margin: 0 auto;
	text-align: center;
}

@media (min-width: 992px) {
	.not-found .page-content {
		padding: 100px 50px;
	}
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comments-area {
	max-width: 920px;
	margin: 0 auto;
}

.comments-area .comments-title {
	margin-bottom: 40px;
}

.comments-area .no-comments {
	padding: 30px;
	margin-top: 20px;
	background: #8F908A;
	color: #F0F0F0;
}

.comments-area .comment-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.comments-area .comment-list li {
	margin-bottom: 30px;
}

.comments-area ol.children {
	padding-left: 5%;
	margin-top: 30px;
	list-style: none;
}

@media (max-width: 991px) {
	.comments-area ol.children {
		margin-left: 0;
	}
}

@media (min-width: 992px) {
	.comments-area ol.children {
		padding-left: 12%;
	}
}

.comments-area .comment-body {
	position: relative;
	padding: 25px;
	background-color: #fff;
}

.comments-area .comment-body + .comment-respond {
	margin-top: 30px;
}

@media (min-width: 992px) {
	.comments-area .comment-body + .comment-respond {
		margin-top: 60px;
	}
}

.comments-area .comment-meta {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 66px;
	margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
	.comments-area .comment-meta {
		padding-left: 90px;
	}
}

.comments-area .comment-meta .says {
	display: none;
}

.comments-area .comment-metadata {
	font-size: 1.5rem;
}

.comments-area .comment-metadata a {
	color: #8F908A;
}

.comments-area .comment-metadata .edit-link {
	display: inline;
	margin-left: 1.5rem;
}

.comments-area .comment-author {
	margin-bottom: 6px;
}

.comments-area .comment-author .avatar {
	display: block;
	margin-bottom: 1.5rem;
	border-radius: 50%;
}

@media (min-width: 992px) {
	.comments-area .comment-author .avatar {
		position: absolute;
		top: 0;
		left: 0;
		margin-bottom: 0;
	}
}

.comments-area .comment-author .fn {
	font-weight: 500;
	color: #252525;
}

.comments-area .comment-author .fn a {
	color: inherit;
}

.comments-area .comment-author .fn a:focus, .comments-area .comment-author .fn a:hover {
	color: #f48529;
	text-decoration: none;
}

.comments-area .reply {
	position: relative;
	margin-top: 20px;
}

@media (min-width: 992px) {
	.comments-area .reply {
		position: absolute;
		top: 30px;
		right: 28px;
		margin-top: 0;
	}
}

.comments-area .comment-form {
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
	column-gap: 30px;
	color: #fff;
	background-color: #252525;
}

.comments-area .comment-form-email,
.comments-area .comment-form-author {
	width: 100%;
}

@media (min-width: 992px) {
	.comments-area .comment-form-email,
	.comments-area .comment-form-author {
		width: calc((100% - 30px) / 2);
	}
}

.comments-area .comment-form-comment,
.comments-area .comment-form-cookies-consent {
	width: 100%;
}

.comments-area .comment-respond {
	margin-top: 100px;
}

.comments-area .form-submit {
	margin-bottom: 0;
}

.comments-area .form-submit input[type="submit"]:hover {
	background-color: transparent;
}

.comments-area .comment-reply-title small {
	margin-left: 1.5rem;
}


.main-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	width: 100%;
	max-width: 540px;
	padding: 0 40px 40px;
	overflow: auto;
	color: #8F908A;
	background: #252525;
	transition: 0.3s;
	transform: translateX(100%);
}

.main-sidebar.opened {
	transform: none;
}

.admin-bar .main-sidebar {
	top: 32px;
}

.main-sidebar .close-sidebar {
	position: absolute;
	top: 42px;
	right: 40px;
	z-index: 9;
	padding: 0;
	background-color: transparent;
	transition: 0.25s;
}

.main-sidebar .close-sidebar path {
	transition: 0.25s;
	fill: #F0F0F0;
}

.main-sidebar .close-sidebar svg {
	transition: .25s;
}

.main-sidebar .close-sidebar:hover svg {
	transform: rotate(90deg);
}

.main-sidebar .widget-title {
	display: block;
	margin: 0 -40px 35px;
	padding: 35px 40px 35px 35px;
	color: #fff;
	background: #f48529;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	font-size: .875em;
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Blocks
--------------------------------------------- */

/* common block styles */


.entry-content > * {
	max-width: 1200px;
	margin-right: auto;
	margin-bottom: 28px;
	margin-left: auto;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content > *.alignwide {
	max-width: 1400px;
}

.entry-content > *.alignfull {
	width: auto;
	max-width: none;
	margin-right: -20px;
	margin-left: -20px;
}

@media (min-width: 992px) {
	.entry-content > *.alignfull {
		margin-right: -50px;
		margin-left: -50px;
	}
}

@media (min-width: 600px) {
	.entry-content > *.alignleft {
		margin-right: 30px;
	}
}

@media (min-width: 920px) {
	.entry-content > *.alignleft {
		margin-left: Max(calc(0.5 * (100vw - min(100vw, 920px)) - 20px), 0px);
		max-width: 400px;
	}
}

@media (min-width: 992px) {
	.entry-content > *.alignleft {
		margin-left: Max(calc(0.5 * (100vw - min(100vw, 920px)) - 50px), 0px);
	}
}

@media (min-width: 600px) {
	.entry-content > *.alignright {
		margin-left: 30px;
	}
}

@media (min-width: 920px) {
	.entry-content > *.alignright {
		margin-right: Max(calc(0.5 * (100vw - min(100vw, 920px)) - 20px), 0px);
		max-width: 400px;
	}
}

@media (min-width: 992px) {
	.entry-content > *.alignright {
		margin-right: Max(calc(0.5 * (100vw - min(100vw, 920px)) - 50px), 0px);
	}
}


/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 1.5rem 23px 1.4rem;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}
