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

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

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

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

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

@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Regular.woff2') format('woff2'),
         url('font/Roboto-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: 'Roboto', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
}

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



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

.last-menu-item{align-items: center;}

.hide-in-desktop{display: none;}

.hide-in-mobile{
    display: flex;
    align-items: center;
}

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

.hide-in-desktop{display: block;}

.hide-in-mobile{display: none;}

}

        .Hunk-header {
            position: sticky;
            top: 0;
            left: 0;
            z-index: 100;
            width: 100%;
            height: auto;
            background-color: hsl(0, 0%, 100%);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .Hunk-logo {
           width: 205px;
           height: 40px;
        }

        .Hunk-navbar {
            width: 100%;
            height: 7rem;
            margin-inline: auto;
        }
        .Hunk-navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 100%;
            height: 100%;
        }

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

            .Hunk-navbar-block{padding-bottom: 30px;box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }



        }
        .Hunk-navbar-block {
            position: absolute;
            left: 0;
            width: 100%;
            height: auto;
            opacity: 0;
            overflow: auto;
            pointer-events: none;
            background-color: hsl(0, 0%, 100%);
            transition: opacity 0.4s ease;

        }
        .Hunk-navbar-block.menu-active {
            opacity: 1;
            pointer-events: initial;
        }

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

            .Hunk-logo{


                width: 154px;
                height: 30px;
            }

            .Hunk-header{

                padding: 0.5rem 1rem;
            }
            .custom-arrow {
                right: 20px !important;
            }

            .Hunk-single-column {
                height: 0;
                padding: 0;
                padding-left: 24px;
            }
        }

        @media screen and (min-width: 992px) {
            .Hunk-single-column {
                top: 150%;
                left:auto!important;
                right: auto!important;
                position: absolute;
                opacity: 0;
                width: 250px;
                padding: 20px;
                background-color: #f6f6f6;
                transition: top 0.4s, opacity 0.3s ease;
            }

            .Hunk-menu-item:hover .Hunk-single-column {
                top: 100% !important;
                opacity: 1;
                transition: top 0.4s, opacity 0.3s ease;
                left: auto !important;
                right: auto !important;
            }

            .Hunk-menu-item:hover>a, .Hunk-menu-item:hover>a span{color:#d52a31; }

            .Hunk-navbar {
              width: 120rem;
                display: flex;
                justify-content: space-between;
                gap: 20px;
            }
            .Hunk-navbar-block {
                position: initial;
                height: initial;
                opacity: 1;
                overflow: auto;
                pointer-events: visible;
                background: none;
                transition: none;
            }
        }
        .Hunk-menu {
            padding-block: 1rem;
            padding-inline: auto;
            list-style: none;
        }
        .Hunk-menu-link {
            font-size: 1.6rem;
            font-weight: 500;
            line-height: inherit;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-block: 0.5rem;
            padding-inline: 1.5rem;
            color: hsl(210, 15%, 4%);
            transition: color 0.3s ease;
        }

        @media screen and (min-width: 992px) {
            .Hunk-menu {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                -moz-column-gap: 1rem;
                column-gap: 1rem;
                height: 100%;
                padding: unset;
            }
            .Hunk-menu-item {
                display: flex;
                cursor: pointer;
                padding-inline: 1rem;
                margin-bottom: 0;
            }

            .Hunk-menu-item > a {
                display: flex;
            }
            .Hunk-menu-link {
                padding: unset;
            }
        }
        
        /* 添加自定义箭头图标 - 使用CSS三角形 */
        .Hunk-dropdown-toggle {
            position: relative;
        }

        .Hunk-dropdown-toggle .custom-arrow {
            position: absolute;
            right: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid currentColor;
            transition: transform 0.3s ease;
            z-index: 2;
        }

        /* 增加一个更大的点击区域 */
        .Hunk-dropdown-toggle .custom-arrow::after {
            content: '';
            position: absolute;
            top: -1.5rem;
            right: -25px;
            bottom: -1.5rem;
            left: -25px;
            background-color: transparent;
            z-index: 1;
        }

        .dropdown-show > .Hunk-dropdown-toggle .custom-arrow,
        .dropdown:hover > a > .Hunk-dropdown-toggle .custom-arrow {
            transform: translateY(-50%) rotate(180deg);
        }

        .Hunk-dropdown-container {
            height: 0;
            overflow: hidden;
            background-color: hsl(0, 0%, 100%);
            transition: height 0.5s ease;
        }

        .dropdown-show .Hunk-dropdown-container{


            max-height: 80vh;
    overflow-y: auto;
        }
        .Hunk-dropdown-container img:hover{transform: scale(1.2);transition: all .5s;}
        .Hunk-dropdown-container img{transition: all .5s;}


        .Hunk-dropdown-columns, .Hunk-dropdown-column, .Hunk-dropdown-items {
            display: grid;
        }
        .Hunk-dropdown-column {
            padding-bottom: 1rem;
            padding-inline: 0rem;
        }
        .Hunk-dropdown-title {
            display: flex;
            -moz-column-gap: 1rem;
            column-gap: 1rem;
            align-items: center;
            padding-inline: 1rem;
            font-size: 1.8rem;
            overflow: hidden;
        }

        .Hunk-dropdown-title span{color:#333;font-size: 2rem;}

        .Hunk-dropdown-title span:hover{color:#d52a31;}

        .Hunk-dropdown-icon i.bx {
            font-size: 1.5rem;
            line-height: 1.5;
            color: hsl(217, 91%, 50%);
        }

        .Hunk-dropdown-items {
     
            padding-inline: 2.5rem;
            padding-top: 0.35rem;
        }

        .Hunk-dropdown-items li:hover a:after{content: '\2192'; position: absolute; left:110%;transition: all .5s;}



        .Hunk-dropdown-items a {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: inherit;
            color: hsl(210, 15%, 4%);
            transition: color 0.3s ease;
            position: relative;
        }
        .dropdown-show > .Hunk-dropdown-toggle .custom-arrow {
            transform: translateY(-50%) rotate(180deg);
        }
        .Hunk-dropdown-block {
            display: flex;
            align-items: flex-start;
            -moz-column-gap: 1rem;
            column-gap: 1rem;
            padding-top: 1rem;
            padding-inline: 1rem;
        }

        @media screen and (min-width: 992px) {
            .Hunk-dropdown-toggle {
                -moz-column-gap: 0.35rem;
                column-gap: 0.35rem;
                pointer-events: none;
            }
            .Hunk-dropdown-container {
                position: absolute;
                left: 0;
                right: 0;
                top: 6rem;
                opacity: 0;
                height: -webkit-max-content;
                height: -moz-max-content;
                height: max-content;
                pointer-events: none;
                background-color: hsl(0, 0%, 100%);
                border-top: 2px solid hsl(0, 0%, 95%);
                box-shadow: 0 10px 1.5rem -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
                transition: top 0.4s, opacity 0.3s ease;
            }

            .Hunk-dropdown-columns {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                -moz-column-gap: 2rem;
                column-gap: 2rem;
                max-width: 120rem;
                margin-inline: auto;
            }

            .menu-item-74 .Hunk-dropdown-columns{

                grid-template-columns: repeat(6, minmax(0, 1fr));
            }

            .Hunk-dropdown-img{margin-bottom: 2rem;}
            .Hunk-dropdown-column {
                align-content: baseline;
                row-gap: 1.25rem;
                padding-block: 4rem;
            }
            .Hunk-dropdown-column:first-child, .Hunk-dropdown-column:last-child {
                margin: unset;
            }
            .Hunk-dropdown-items {
                padding-top: unset;
            }
            .Hunk-dropdown-block {
                padding-top: unset;
                padding-inline: unset;
            }
            .dropdown:hover > .Hunk-dropdown-container {
                cursor: initial;
                top: 100%;
                opacity: 1;
                pointer-events: initial;
            }
            .dropdown:hover > a > .Hunk-dropdown-toggle .custom-arrow {
                transform: translateY(-50%) rotate(180deg);
            }
        }
        .Hunk-mobile-burger {
            cursor: pointer;
            position: relative;
            display: block;
            z-index: 10;
            width: 24px;
            height: 1.6rem;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            visibility: visible;
        }
        .burger-line {
            position: absolute;
            display: block;
            right: 0;
            width: 100%;
            height: 2px;
            opacity: 1;
            background-color: hsl(210, 15%, 4%);
            transition: all 0.3s ease;
        }
        .burger-line:nth-child(1) {
            top: 0px;
        }
        .burger-line:nth-child(2) {
            top: 8px;
            width: 70%;
        }
        .burger-line:nth-child(3) {
            top: 1.6rem;
        }
        .Hunk-mobile-burger.menu-active > .burger-line:nth-child(1) {
            top: 0.5rem;
            rotate: 135deg;
        }
        .Hunk-mobile-burger.menu-active > .burger-line:nth-child(2) {
            opacity: 0;
        }
        .Hunk-mobile-burger.menu-active > .burger-line:nth-child(3) {
            top: 0.5rem;
            rotate: -135deg;
        }

        @media screen and (max-width: 991px) {
            .show-on-desk {
                display: none !important;
            }
        }

        @media screen and (min-width: 992px) {
            .show-on-mobile {
                display: none !important;
            }
            .Hunk-mobile-burger {
                display: none;
                visibility: hidden;
            }
        }

        /* 搜索框样式 */
        .Hunk-search {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 20;
            height: 100%;
            padding: 0 20px;
        }

        .show-on-desk .search-field{

            width: 270px!important;
        }

        .show-on-mobile .search-field{

            width: 230px!important;
        }

        .search-icon {
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .Hunk-search:hover .search-icon {
            transform: scale(1.1);
            background-color: rgba(0, 0, 0, 0.05);
        }

        /* 桌面端搜索下拉框 */
        .search-dropdown {
            position: absolute;
            top: 90%;
            right: 0;
            width: 400px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        }

        .Hunk-search:hover .search-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        .search-input {
            width: 100%;
            padding: 10px 1.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.6rem;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: hsl(217, 91%, 50%);
            box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
        }

        /* 移动端搜索下拉框 */
        .mobile-search-dropdown {
            position: absolute;
            top: 120%;
            left: 10%;
            transform: translateX(-50%);
            background: white;
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 30;
            width: 360px;
        }

        .mobile-search-dropdown.active {
            display: block;
        }

        /* 移动端搜索框样式 */
        .mobile-search-input {
            width: 100%;
            padding: 12px 1.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.6rem;
        }


/*------------------------------- 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;
}


 .lightSpeedIn h1, .lightSpeedIn p, .lightSpeedIn .cta-button, .lightSpeedIn .Hunk-feature-list {
            opacity: 0;
            transform: translateX(100%) skewX(-30deg);
            animation: lightSpeedIn 0.8s ease-out forwards;
        }
        
        .lightSpeedIn h1 { animation-delay: 0.3s; }
        .lightSpeedIn p { animation-delay: 0.5s; }
        .lightSpeedIn .Hunk-feature-list { animation-delay: 0.7s; }
        .lightSpeedIn .cta-button { animation-delay: 0.9s; }



 @keyframes lightSpeedIn {
            0% { opacity: 0; transform: translateX(100%) skewX(-30deg); }
            60% { opacity: 1; transform: skewX(20deg); }
            80% { transform: skewX(-5deg); }
            100% { opacity: 1; transform: translateX(0) skewX(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: #d52a31;   /* 对号颜色，可自行调整 */
  font-weight: bold;
}



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


.Hunk-slider { max-width: 1400px; margin: auto; overflow: hidden; }

    .Hunk-slider-track {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      justify-content: center;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding-bottom: 0px;
    }
    .Hunk-slider-track::-webkit-scrollbar { display: none; }

    .Hunk-slide {
      position: relative;
      flex: 0 0 80px;
      height: 521px;
      border-radius: 1.6rem;
      overflow: hidden;
      cursor: pointer;
      transition: flex-basis 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .Hunk-slide[active] {
      flex-basis: 780px;
      transform: translateY(-6px);
      box-shadow: 0 1.8rem 55px rgba(0, 0, 0, 0.15);
    }
    .Hunk-slide__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.65) saturate(75%);
      transition: filter 0.3s, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .Hunk-slide:hover .Hunk-slide__bg { filter: brightness(0.95) saturate(100%); transform: scale(1.06); }

    .Hunk-slide__content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 11.2px;
      background: linear-gradient(transparent 40%, rgba(0,0,0,0.6) 100%);
      z-index: 2;
    }

    .Hunk-slide__title {
      color: #fff;
      font-weight: 700;
   
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    .Hunk-slide__thumb,
    .Hunk-slide__desc,
    .Hunk-slide__btn { display: none; }

    .Hunk-slide[active] .Hunk-slide__content {
      flex-direction: row;
      align-items: center;
      padding: 19.2px 32px;
      gap: 17.6px;
    }
    .Hunk-slide[active] .Hunk-slide__title {
      writing-mode: horizontal-tb;
      transform: none;
      font-size: 2.4rem;
    }
    .Hunk-slide[active] .Hunk-slide__thumb,
    .Hunk-slide[active] .Hunk-slide__desc,
    .Hunk-slide[active] .Hunk-slide__btn { display: block; }

    .Hunk-slide__thumb {
      width: 133px;
      height: 269px;
      border-radius: 7.2px;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .Hunk-slide__desc { color: #eee;  line-height: 1.4; max-width: 88%; }
    .Hunk-slide__btn {
      padding: 8.8px 20.8px;
      border: none;
      border-radius: 9999px;
      background: #d52a31;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
    }

    .Hunk-slide[active] .Hunk-slide__btn {


        display: inline-block;


    }

    @media (max-width: 767px) {
      .head { padding: 30px 1.5rem 20px; }
      .Hunk-slider { padding: 0;}
      .Hunk-slider-track { flex-direction: column; gap: 12.8px; padding-bottom: 0px; scroll-snap-type: y mandatory; }
      .Hunk-slide { height: auto; min-height: 80px; width: 100%; }
      .Hunk-slide[active] { min-height: 300px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
      .Hunk-slide__content { flex-direction: row; justify-content: flex-start; padding: 1.6rem; }
      .Hunk-slide__title { writing-mode: horizontal-tb; transform: none;  margin-right: auto; }
      .Hunk-slide[active] .Hunk-slide__title { margin-top: 32px; }
    }
  
.child-cat-item{color: #fff;
    font-size: 1.6rem;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;}


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


        /* 播放按钮样式 */
        .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;
        }
        
        .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: 3px;
            border-left: 30px solid #FFFFFF;
            border-top: 1.8rem solid transparent;
            border-bottom: 1.8rem solid transparent;
        }
        
        .Hunk-btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 90px;
            height: 90px;
            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: 90px;
            height: 90px;
            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 {
            position: absolute;
            top: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            z-index: 1;
        }
        
        .Hunk-left-section {
            left: 0;
            width: 50%;
        }
        
        .Hunk-right-section {
            right: 0;
            width: 50%;
        }
        
        .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 {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.1);
            max-width: 90%;
        }
        
    
        
        /* 响应式设计 */
        @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-extend-arrow {
  display: flex;
  justify-content: center;

}

.Hunk-btn-content {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #fff;
  background: #d52a31;
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 #00000080;
}

.Hunk-btn-content:hover, .Hunk-btn-content:focus {
  transition: 0.5s;
  -webkit-animation: Hunk-btn-content 1s;
  animation: Hunk-btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 #d52a31;
  color: #fff;
}

.Hunk-btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.Hunk-btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 6px;
  position: relative;
  top: 6%;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.Hunk-btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.Hunk-btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.Hunk-btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #d52a31;
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes Hunk-btn-content {
  0% {
    outline: 0.2em solid #d52a31;
    outline-offset: 0;
  }
}

@keyframes Hunk-btn-content {
  0% {
    outline: 0.2em solid #ff145b80;
    outline-offset: 0;
  }
}





  .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 ------------------*/




    

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


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

        /* 下拉背景 */
        .content-box-16::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #D1A1A1;
            transition: width 0.5s ease;
            z-index: 0;
        }

        .content-box-16:hover::before {
            width: 100%;
        }

        /* 图片容器 */
        .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;
        }

        /* 悬停文字变白 */
        .content-box-16:hover h3,
        .content-box-16:hover .description {
            color: white;
        }


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

.Hunk-custom-step {
  flex: 0 0 48%;          /* 每个模块占一半宽度 */
    box-sizing: border-box; /* 包含 padding 在宽度内 */
    text-align: center;
    padding: 10px;
}


/* 给每行的第二个子元素加 margin-top */
.Hunk-custom-step:nth-child(2),
.Hunk-custom-step:nth-child(4) {
    margin-top: 30px; /* 调整错开高度 */
}

/* 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: #d52a31;
    font-size: 1.6rem;
    padding: 7px 20px;
    border: 2px solid;
    background: none;
    border-radius: 30px;
    border-color: #d52a31;
    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: #d52a31;

            color: #fff;


        }


    

    .Hover-ripple-shadow {
            border: none;
            color: #fff;
            background-image: linear-gradient(30deg, #d52a31, #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 ------------------------*/


.Hunk-carousel-container {
            width: 800px;
            max-width: 90%;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 5px 1.5rem rgba(0, 0, 0, 0.1);
            border-radius: 8px;
      
            background: white;
        }
        
        .Hunk-carousel-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .Hunk-carousel-items {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .Hunk-carousel-item {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            color: #333;
            text-align: center;
        }
        
        .Hunk-testimonial-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 90%;
            height: 100%;
            justify-content: center;
        }
        
        .Hunk-testimonial-text {
            font-size: 1.8rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 30px;
            position: relative;
            padding: 0 30px;
        }
        
        .Hunk-testimonial-text::before,
        .Hunk-testimonial-text::after {
            content: '"';
            font-size: 4rem;
            color: #e0e0e0;
            position: absolute;
            font-family: Georgia, serif;
        }
        
        .Hunk-testimonial-text::before {
            top: -20px;
            left: -10px;
        }
        
        .Hunk-testimonial-text::after {
            bottom: -40px;
            right: -10px;
        }
        
        .Hunk-testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .Hunk-author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid #f0f0f0;
        }
        
        .Hunk-author-info {
            text-align: left;
        }
        
        .Hunk-author-name {
            font-weight: bold;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .Hunk-author-title {
            color: #666;
            font-size: 1.4rem;
        }
        
        .Hunk-carousel-navs {
            position: absolute;
            left: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 10;
        }
        
        .Hunk-nav-arrow {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        }
        
        .Hunk-nav-arrow:hover {
            background: white;
            transform: scale(1.05);
        }
        
        .Hunk-nav-arrow svg {
            width: 1.8rem;
            height: 1.8rem;
            fill: #333;
        }
        
        .Hunk-carousel-dots {
            position: absolute;
            bottom: 1.5rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }
        
        .Hunk-dot {
            width: 10px;
            height: 10px;
            border-radius: 5px;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.4s ease;
        }
        
        .Hunk-dot.active {
            width: 35px;
            background: #333;
        }
        
        @media (max-width: 768px) {
            .Hunk-carousel-wrapper {
                height: 450px;
            }

            .Hunk-carousel-container{max-width: 100%;}
            
          
            .Hunk-testimonial-text::before,
            .Hunk-testimonial-text::after {
                font-size: 3rem;
            }
            
            .Hunk-testimonial-text::before {
                top: -1.5rem;
                left: -5px;
            }
            
            .Hunk-testimonial-text::after {
                bottom: -30px;
                right: -5px;
            }
            
            .Hunk-author-avatar {
                width: 60px;
                height: 60px;
            }
        }


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


       
              .Hunk-cta-container {
            background: white;
            border-radius: 1.6rem;
            padding: 60px 50px;
            text-align: center;
            
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            border-top: 4px solid #d52a31;
        }
        
    
      
  
       
        
        /* 动画效果 */
        @keyframes Hunk-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .Hunk-cta-container h2 {
            animation: Hunk-fadeInUp 0.8s ease-out;
        }
        
        .Hunk-cta-container p {
            animation: Hunk-fadeInUp 0.8s ease-out 0.2s both;
                    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
        }
        
      .Hunk-cta-container  .hover-extend-arrow {
            animation: Hunk-fadeInUp 0.8s ease-out 0.4s both;
        }


/*----------------------- 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, #d52a31 0%, #d52a31 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;


}

/*--------------- brands ------------------------*/



    

    .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: 2rem;
      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; }



/* === Industry Applications Section === */
.Hunk-industry-item {
    border-radius: 1.6rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    height: 100%;
}

.Hunk-industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.Hunk-industry-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #e5e5e5;
}

.Hunk-industry-item .card-body {
    padding: 20px 25px;
}

.Hunk-industry-item h3 {
   
    margin-bottom: 10px;
}


/* Responsive adjustments for Bootstrap grid */
@media (max-width: 992px) {
    .Hunk-industry-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .Hunk-industry-item {
        margin-bottom: 1.5rem;
    }
}


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


 .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:#d52a31; 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 #d52a31;
    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: #d52a31;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: #d52a31;
  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: #d52a31;
  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:#d52a31!important;font-weight: 700!important;}



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


.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 #d52a31;
    background-color: transparent;color:#d52a31;}
    .reverse.button:hover{background: #d52a31;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: 800px;
      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.4rem;
      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: #d52a31;}

    .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:#d52a31;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: #d52a31;}
.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;
        }

        .button, button, input[type='submit'], input[type='reset'], input[type='button'] {
            position: relative;
            display: flex;
            text-transform: uppercase;
            align-items: center;
            cursor: pointer;
            font-weight: bolder;
            text-align: center;
            color: #fff;
            text-decoration: none;
            border: 1px solid transparent;
            vertical-align: middle;
            border-radius: 0;
            margin-top: 0;
            margin-right: 1em;
            text-shadow: none;
            max-width: 100%;
            transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s;
            text-rendering: optimizeLegibility;
            box-sizing: border-box;
            background-color: #d52a31;
        }

        .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 #d52a31;
            background-color: transparent;
            color: #d52a31;
        }
        
        .reverse.button:hover {
            background: #d52a31;
            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;}



    .alignleft{text-align: left;}

    .aligncenter{text-align: center;}
    .alignright{text-align: right;}
    .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{background-color: #f6f6f6;}

.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: #d52a31; 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: #d52a31;
  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 -----------------*/

    .Hunk-timeline-container {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      padding: 4rem 3rem;
   
      width: 100%;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
          0 10px 10px -5px rgba(0, 0, 0, 0.04);
      text-align: center;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(226, 232, 240, 0.8);
      backdrop-filter: blur(10px);
    }

    .Hunk-timeline-content {
      margin-bottom: 4rem;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .Hunk-timeline-items {
      position: relative;
      width: 100%;
    }

    .Hunk-timeline-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .Hunk-timeline-item.Hunk-active {
      opacity: 1;
      position: relative;
    }

    .Hunk-event-icon {
      width: 100%;
      height: auto;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: white;
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .Hunk-event-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .Hunk-event-year {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #000;
      letter-spacing: -0.05em;
    }

    .Hunk-event-company {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
      color: #333;
      letter-spacing: -0.025em;
    }

    .Hunk-event-description {
  
      font-weight: 400;
      max-width: 550px;
      line-height: 1.7;
     
      letter-spacing: 0.015em;
    }

    .Hunk-slider-container {
      position: relative;
      margin: 3rem 0 0 0;
      padding: 0 1rem;
    }

    .Hunk-slider-stick {
      position: relative;
      height: 6px;
      background: #08080833;
      border-radius: 8px;
      margin-bottom: 2rem;
      user-select: none;
    }

    .Hunk-progress-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 6px;
      background: linear-gradient(90deg, #d52a31, #d52a31);
      border-radius: 8px;
      width: 0%;
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .Hunk-tick {
      position: absolute;
      top: -4px;
      width: 2px;
      height: 1.4rem;
      background: #08080833;
      border-radius: 1px;
      transform: translateX(-1px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .Hunk-tick.Hunk-active {
      background: linear-gradient(135deg, #d52a31, #d52a31);
      height: 1.8rem;
      top: -6px;
      width: 3px;
      box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
    }

    .Hunk-year-labels {
      display: flex;
      justify-content: space-between;
      padding: 0 1rem;

      font-size: 1.4rem;
    
      color: #94a3b8;
      font-weight: 500;
      user-select: none;
      letter-spacing: 0.025em;
      position: relative;
    }

    .Hunk-year-label {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    .Hunk-year-label.Hunk-active {
      color: #d52a31;
      font-weight: 700;
      transform: translateX(-50%) scale(1.1);
      text-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
    }

    .Hunk-timeline-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      background: transparent;
      outline: none;
      position: absolute;
      top: 4px;
      left: 0;
      margin: 0;
      cursor: pointer;
      z-index: 10;
    }

    .Hunk-timeline-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: white;
      border: 3px solid #6366f1;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-top: -8px;
      position: relative;
      z-index: 2;
    }

    .Hunk-timeline-slider::-webkit-slider-thumb:hover {
      transform: scale(1.15);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5),
          0 0 0 8px rgba(99, 102, 241, 0.1);
      border-color: #8b5cf6;
    }

    .Hunk-timeline-slider::-webkit-slider-thumb:active {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6),
          0 0 0 4px rgba(99, 102, 241, 0.2);
    }

    .Hunk-timeline-slider::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: white;
      border: 3px solid #6366f1;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 2;
    }

    .Hunk-timeline-slider::-moz-range-thumb:hover {
      transform: scale(1.15);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
      border-color: #8b5cf6;
    }

    @media (max-width: 768px) {
    

      .Hunk-timeline-container {
        padding: 2.5rem 2rem;
        margin: 0;
        border-radius: 1.6rem;
      }

      .Hunk-event-year {
        font-size: 2.5rem;
      }

      .Hunk-event-company {
        font-size: 1.25rem;
      }

      .Hunk-event-description {
        font-size: 1rem;
      }

      .Hunk-event-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .Hunk-timeline-content {
        min-height: 280px;
        margin-bottom: 3rem;
      }

      .Hunk-slider-container {
        padding: 0 0.5rem;
      }

      .Hunk-year-labels {
        padding: 0 0.5rem;
        font-size: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .Hunk-timeline-container {
        padding: 2rem 1.5rem;
        padding-bottom: 3.5rem;
      }

      .Hunk-event-year {
        font-size: 2rem;
      }

      .Hunk-year-labels {
        font-size: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
      }

      .Hunk-year-label {
        transform: rotate(90deg) translateY(0) !important;
        transform-origin: top left;
      }
    }


/* 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: #d52a31!important;background: #fff;outline:solid 1px #d52a31;}
   .reverse-2{background: #d52a31;color: #fff!important;}
   .reverse-2 span{margin-right: 3px;}
   
   .reverse-2 svg path{fill: #fff;transition: all .3s;}

   .reverse-2:hover svg path{fill: #d52a31;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: #d52a31;
    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: #d52a31;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: #d52a31; /* 填充颜色 */
  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: 8rem;position: relative;z-index: 6;}
.sectionD{background-color: #f6f6f6;}

.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;}


            /* 卡片链接样式 */
        .card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .Hunk-blog-box {
            display: flex;
            background: white;
            border-radius: 1.6rem;
            overflow: visible;
            box-shadow: 0 1.5rem 30px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card-link:hover .Hunk-blog-box {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .Hunk-blog-image {
            flex: 0 0 45%;
            position: relative;
            margin-left: -40px;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .Hunk-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .Hunk-blog-box-content {
            flex: 0 0 55%;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .box-date {
            color: #888;
    font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .blog-box-title {
          
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
            line-height: 1.2;
        }
        
        .blog-box-excerpt {
          
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        /* 将按钮改为普通div */
        .read-more-div {
            align-self: flex-start;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.4rem;
            box-shadow: 0 4px 1.5rem rgba(255, 126, 95, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }
        
        .card-link:hover .read-more-div {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
        }
        
        .card-link:active .read-more-div {
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .Hunk-blog-box {
                flex-direction: column;
            }
            
            .Hunk-blog-image {
                margin: 20px 20px 0 20px;
            }
            
            .Hunk-blog-image img {
                border-radius: 12px 12px 0 0;
                max-height: 250px;
            }
            
            .read-more-div {
                align-self: center;
                margin-top: 20px;
            }
        }

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

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

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

      .Hunk-post-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 0 0 0;
        }

        /* Sidebar styles */
        .Hunk-blog-sidebar {
            width: 300px;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-right: 20px;
            position: sticky;
            top: 60px;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
        }

        .Hunk-toc-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e9ecef;
         
        }

        .Hunk-toc-list {
            list-style: none;
            padding-left: 0;
        }

        .Hunk-toc-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 1.5rem;
        }

        .Hunk-toc-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background-color: #3498db;
            border-radius: 50%;
        }

        .Hunk-toc-list li a {
            text-decoration: none;
            color: #555;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
        }

        .Hunk-toc-list li a:hover {
            color: #e74c3c;
        }

        .Hunk-toc-list li.active a {
            color: #e74c3c;
            font-weight: 600;
        }

        .Hunk-toc-list .toc-h2 {
            font-size: 1.1rem;
            margin-left: 0;
        }

        .Hunk-toc-list .toc-h3 {
            font-size: 0.95rem;
            margin-left: 1.5rem;
        }

        /* Main content styles */
        .Hunk-blog-content {
            flex: 1;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }



        /* Mobile TOC button */
        .Hunk-mobile-toc-toggle {
            display: none;
            position: sticky;
            bottom: 80px;
            right: 20px;
            z-index: 1000;
            background-color: #3498db;
            color: white;
            border: none;
          
            width: 100%;
            height: 40px;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .Hunk-mobile-toc-toggle:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }

        /* Mobile TOC panel */
        .Hunk-mobile-toc-panel {
            display: none;
            position: fixed;
            bottom: 50px;
            left: 0;
            right: 0;
            z-index: 999;
            background-color: white;
            border-top-left-radius: 1.5rem;
            border-top-right-radius: 1.5rem;
            box-shadow: 0 -5px 1.5rem rgba(0, 0, 0, 0.1);
            max-height: 80vh;
            overflow-y: auto;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }

        .Hunk-mobile-toc-panel.active {
            display: block;
            transform: translateY(0);
        }

        .Hunk-mobile-toc-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }

        .Hunk-mobile-toc-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .Hunk-mobile-toc-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .Hunk-post-container {
                flex-direction: column;
            }
            
            .Hunk-blog-sidebar {
                width: 100%;
                position: static;
                margin-right: 0;
                margin-bottom: 20px;
                display: none;
                max-height: none;
            }
            
            .Hunk-mobile-toc-toggle {
                display: block;
            }
        }
        
        /* Prevent scrolling */
        body.no-scroll {
            overflow: hidden;
        }

.Hunk-blog-post-img:hover{transform: scale(1.1);transition: all .5s;}

.Hunk-blog-post-img{transition: all .5s;margin-bottom: 1.5rem;}
.Hunk-blog-post-title{margin-bottom: 1.5rem;}
.Hunk-blog-post-date{color: #555;font-size: 1.5rem;}



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



.Hunk-hero-bar { background: linear-gradient(45deg, #d52a31, #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  ----------------------------*/

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {

  li#menu-item-196{padding:0px;}
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
 
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: 2rem;
}  

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}



@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

 
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  
}



.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}



@media (min-width: 576px) {
 

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

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

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

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

}
@media (min-width: 768px) {
  
  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  
}
@media (min-width: 992px) {
  
  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

}
@media (min-width: 1200px) {
 
  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

}
@media (min-width: 1400px) {

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }


}


/*------------------------------------- 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-copyright a{text-decoration: underline;}

.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:#d52a31;}
.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-btn {
    outline: 1px solid #d52a31;
    padding: 5px 1.5rem;
    border-radius: 5px;
    transition: all .3s;
    font-size: 1.8rem;
    display: inline-block;
}

.Hunk-product-btn:hover{

    background-color:#d52a31;

    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;}



.push-box .image-box-text{padding: 1.5rem 20px;
    background-color: rgba(255,255,255,.95);
    max-width: 90%;
    margin: -15% auto 0;

    box-shadow: 0 4px 1.5rem rgba(0, 0, 0, 0.08), 
            0 2px 5px rgba(0, 0, 0, 0.05);

opacity: 1 !important;
    transition: transform .3s;
    transform: scale(1) translateZ(0) translateY(10px) !important;

    min-height: 307px;

}

    .push-box:hover .image-box-text{transform: scale(1) translateZ(0) translateY(0) !important; pointer-events: inherit;}

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



#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: 70px;
            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: #d52a31;
            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: #d52a31;
    color: #fff;
}

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



.product-page .page-header{

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

  color: #fff;



}




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






.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:#d52a31!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: #d52a31; }
    .email i:before{color: #d52a31;}
    .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-social-sharing {
    margin-top: 20px;
    clear: both;
    background: #eee;
    padding: 2rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .sns-shares a {
        margin: 2px;
    }
}

.Hunk-social-sharing-title{display: inline-block;margin-right: 2rem;margin-bottom: 0;margin-top: 0;}

.resp-sharing-button{line-height: 1em;}

  .resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block;
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  
}

.resp-sharing-button {
  border-radius: 100%;
  transition: 25ms ease-out;
  padding: 0.5em 0.5em;
 
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none;
  line-height: 1em;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--pinterest {
  background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
  background-color: #8c0615
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--tumblr {
  background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
  background-color: #222d3c
}

.resp-sharing-button--reddit {
  background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
  background-color: #3a80c1
}

.resp-sharing-button--google {
  background-color: #dd4b39
}

.resp-sharing-button--google:hover {
  background-color: #c23321
}

.resp-sharing-button--linkedin {
  background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
  background-color: #046293
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--xing {
  background-color: #1a7576
}

.resp-sharing-button--xing:hover {
  background-color: #114c4c
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--hackernews {
background-color: #FF6600
}
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus {   background-color: #FB6200 }

.resp-sharing-button--vk {
  background-color: #507299
}

.resp-sharing-button--vk:hover {
  background-color: #43648c
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--tumblr {
  background-color: #35465C;
  border-color: #35465C;
}

.resp-sharing-button--tumblr:hover,
.resp-sharing-button--tumblr:active {
  background-color: #222d3c;
  border-color: #222d3c;
}

.resp-sharing-button--email {
  background-color: #777777;
  border-color: #777777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.resp-sharing-button--pinterest {
  background-color: #bd081c;
  border-color: #bd081c;
}

.resp-sharing-button--pinterest:hover,
.resp-sharing-button--pinterest:active {
  background-color: #8c0615;
  border-color: #8c0615;
}

.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}

.resp-sharing-button--reddit {
  background-color: #5f99cf;
  border-color: #5f99cf;
}

.resp-sharing-button--reddit:hover,
.resp-sharing-button--reddit:active {
  background-color: #3a80c1;
  border-color: #3a80c1;
}

.resp-sharing-button--xing {
  background-color: #1a7576;
  border-color: #1a7576;
}

.resp-sharing-button--xing:hover
.resp-sharing-button--xing:active {
  background-color: #114C4C;
  border-color: #114C4C;
}

.resp-sharing-button--whatsapp {
  background-color: #25D366;
  border-color: #25D366;
}

.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
  background-color: #1DA851;
  border-color: #1DA851;
}

.resp-sharing-button--hackernews {
  background-color: #FF6600;
  border-color: #FF6600;
}

.resp-sharing-button--hackernews:hover
.resp-sharing-button--hackernews:active {
  background-color: #FB6200;
  border-color: #FB6200;
}

.resp-sharing-button--vk {
  background-color: #507299;
  border-color: #507299;
}

.resp-sharing-button--vk:hover
.resp-sharing-button--vk:active {
  background-color: #43648c;
  border-color: #43648c;
}

.resp-sharing-button--telegram {
  background-color: #54A9EB;
}

.resp-sharing-button--telegram:hover {
  background-color: #4B97D1;}


  /*------------------------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: #d52a31;

    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: #d52a31;
    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:#d52a31;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;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button, .mpa-employees-list-shortcode .entry-link,
.wp-block-getwid-post-carousel .entry-link,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button, .mpa-employees-list-shortcode .entry-link,
.wp-block-getwid-post-carousel .entry-link,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button, .mpa-employees-list-shortcode .entry-link,
.wp-block-getwid-post-carousel .entry-link,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button, .mpa-employees-list-shortcode .entry-link,
.wp-block-getwid-post-carousel .entry-link,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner, .mpa-employees-list-shortcode .entry-link::-moz-focus-inner,
.wp-block-getwid-post-carousel .entry-link::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring, .mpa-employees-list-shortcode .entry-link:-moz-focusring,
.wp-block-getwid-post-carousel .entry-link:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {

}

/**
 * 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;
}

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

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

h1, h2, h3, h4, h5, h6{color: #000;}

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 0 1em;
}

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

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: #d52a31;
	text-decoration: none;
	transition: 0.3s;
}

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






/* 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: #F0F0F0;
	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: #d52a31;
}

.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: #d52a31;
	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: #d52a31;
	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: #d52a31;
}

/* 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;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-right: auto;
	margin-left: auto;

}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Appointment
--------------------------------------------- */
