@charset "UTF-8";
/* 字體（Google Fonts 最好在 HTML 載入，而不是 SCSS @import） */
/* 全域 */
/* ---- external (若一定要用 @import url，放最上方) ---- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap" rel="stylesheet');
@import url("https://fonts.googleapis.com/css2?family=Voces&display=swap");
/* ---- foundation ---- */
/* ---------------------------

            GSAP

--------------------------- */
html.has-custom-cursor,
html.has-custom-cursor body {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
#custom-cursor .cursor-dot,
#custom-cursor .cursor-ring {
  opacity: 0;
  transition: opacity 0.2s ease;
  position: fixed;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#custom-cursor .cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2169B6;
  border: 3px #2169B6 solid;
}
#custom-cursor .cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #cccccc;
  opacity: 0;
  will-change: transform, opacity, border-color;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
#custom-cursor :root {
  --cursor-color: $primary;
  --cursor-hover-color: #00c4ff;
}
#custom-cursor #custom-cursor .cursor-dot {
  background: var(--cursor-color, #2169B6);
  border: 3px solid var(--cursor-color, #2169B6);
}
#custom-cursor #custom-cursor .cursor-ring {
  border: 2px solid var(--cursor-color, #2169B6);
}

/* ---- base ---- */
.home .news *,
.home .contact *,
.products *,
.news *,
.faq *,
footer * {
  transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans TC", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #2169B6;
  text-decoration: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (min-width: 344px) and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.nobr {
  white-space: nowrap;
}

.para {
  display: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

ol.custom-list {
  list-style-type: decimal;
  padding-left: 1.5rem;
  font-weight: bold;
  font-size: 1.25rem;
}

body.zh {
  text-align: justify;
}

body.en {
  text-align: left;
}

.content-line-clamp {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.content-line-clamp-single {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

#gototop {
  display: none; /* 預設隱藏 */
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  z-index: 9;
  background-color: white;
  color: #fff;
  font-weight: bolder;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  border: #CCCCCC 1px solid;
  color: #2169B6;
  transition: all 0.3s ease-in-out;
}

#gototop:hover {
  color: white;
  background: #2169b6;
  transform: translateY(-8px);
}

.text-primary {
  color: #2169B6 !important;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none; /* 避免 hover 時提前觸發 */
  background-color: transparent;
}

/* 顯示狀態 */
.dropdown-menu.show {
  visibility: visible;
  pointer-events: auto;
}
.dropdown-menu.show .dropdown-item:hover {
  background-color: #2169B6;
}

/* 下滑展開 */
.animate-slide-down {
  opacity: 1;
  transform: translateY(0);
}

/* 上滑收回 */
.animate-slide-up {
  opacity: 0;
  transform: translateY(-10px);
}

/* 子項目淡入效果（可選） */
.dropdown-menu.animate-slide-down .dropdown-item {
  opacity: 0;
  animation: dropdown-fadein 0.3s ease forwards;
}

.dropdown-menu.animate-slide-down .dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}

.dropdown-menu.animate-slide-down .dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}

.dropdown-menu.animate-slide-down .dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes dropdown-fadein {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 共用元件 */
.navbar {
  z-index: 99;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.25rem 3%;
  background: linear-gradient(0deg, #FFFFFF 0%, #FCFCFC 40%, #EBEBEB 100%);
  font-size: 1rem;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.navbar .container-fluid {
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .navbar .container-fluid {
    flex-direction: row;
    align-items: center;
  }
}
.navbar .logo-block {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: #cccccc 1px solid;
  width: 100%;
}
.navbar .logo-block .logo {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  font-size: 2rem;
  font-weight: bold;
  color: #1A2545;
}
@media screen and (max-width: 1200px) {
  .navbar .logo-block {
    width: auto;
    padding-bottom: 0px;
    border-bottom: none;
  }
  .navbar .logo-block .logo {
    font-size: 1.75rem;
    column-gap: 0.5rem;
  }
  .navbar .logo-block .logo img {
    height: 2.25rem;
  }
}
.navbar .offcanvas .logo .logo-text {
  color: #1A2545;
}
@media screen and (max-width: 1200px) {
  .navbar .offcanvas .logo {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: bold;
    color: #1A2545;
  }
  .navbar .offcanvas .logo img {
    height: 2.25rem;
  }
}
.navbar .offcanvas .offcanvas-body .navbar-nav {
  margin-top: 1.25rem;
  column-gap: 1.5rem;
}
@media screen and (max-width: 1400px) {
  .navbar .offcanvas .offcanvas-body .navbar-nav {
    column-gap: 0;
  }
}
.navbar .nav-link {
  font-weight: 600;
  color: #666666;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0;
}
.navbar .nav-link.show, .navbar .nav-link.active, .navbar .nav-link:hover {
  color: #2169B6;
}
.navbar .nav-link.dropdown-toggle {
  position: relative;
}
.navbar .nav-link.dropdown-toggle::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 64px;
}
.navbar .nav-link.dropdown-toggle i {
  margin-right: 0.25rem;
}
.navbar .dropdown-menu {
  min-width: auto;
  padding: 0;
}
.navbar .dropdown-menu.langswitch {
  min-width: 72px;
}
@media (min-width: 992px) {
  .navbar .dropdown-menu .dropdown-item {
    justify-content: center;
    width: auto;
  }
}
.navbar .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  height: 50px;
  color: white;
  background-color: rgba(34, 34, 34, 0.8);
}
.navbar .dropdown-menu .dropdown-item:hover {
  font-weight: bolder;
}
.navbar .nav-item {
  cursor: pointer;
}
.navbar .nav-item.dropdown .dropdown-menu {
  border-radius: 0;
  max-width: auto;
}
@media (min-width: 992px) {
  .navbar .nav-item.dropdown {
    display: flex;
    justify-content: center;
  }
  .navbar .nav-item.dropdown .dropdown-menu {
    margin-top: 44px;
  }
}

@media screen and (min-width: 1200px) {
  .navbar .toggler {
    display: none;
  }
}
.navbar .toggler {
  cursor: pointer;
}
.navbar .toggler .toggler-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.5rem;
  height: 42px;
  width: 42px;
  padding: 0.5rem;
}
.navbar .toggler .toggler-block span {
  display: block;
  height: 1px;
  width: 100%;
}

.navbar .offcanvas .offcanvas-body .search {
  position: absolute;
  top: 1.5rem;
}
.navbar .offcanvas .offcanvas-body .search form {
  display: flex;
  height: 35px;
}
.navbar .offcanvas .offcanvas-body .search form input {
  width: 300px;
}
.navbar .offcanvas .offcanvas-body .search form .form-control:focus {
  box-shadow: none;
  border-color: #2169B6;
}
.navbar .offcanvas .offcanvas-body .search form button {
  width: 100px;
}
.navbar .offcanvas .offcanvas-body .search form button.btn-outline-primary {
  border-color: #2169B6;
  color: #2169B6;
  font-weight: bolder;
  line-height: 1rem;
}
.navbar .offcanvas .offcanvas-body .search form button.btn-outline-primary:hover {
  color: #F7F9FC;
  background-color: #2169B6;
}

.sticky-navbar * {
  transition: font-size 0.3s ease-in-out, column-gap 0.3s ease-in-out, height 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, margin-top 0.3s ease-in-out, width 0.3s ease-in-out;
}

.sticky-navbar.shrink .container-fluid {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
.sticky-navbar.shrink .logo {
  font-size: 1.75rem;
  column-gap: 0.5rem;
}
.sticky-navbar.shrink .logo img {
  height: 3rem;
}
.sticky-navbar.shrink .logo-block {
  display: block;
  padding-bottom: 0px;
  border-bottom: none;
  width: 100%;
}
.sticky-navbar.shrink .offcanvas .offcanvas-body .navbar-nav {
  margin-top: 0;
}
.sticky-navbar.shrink .nav-link {
  white-space: nowrap;
}

@media screen and (max-width: 1200px) {
  .offcanvas.offcanvas-end {
    width: 50%;
  }
  .navbar {
    padding: 1.5rem 5.2%;
  }
  .navbar .navbar-nav {
    align-items: flex-start;
  }
  .navbar .nav-link {
    justify-content: flex-start;
    width: 100%;
  }
  .navbar .nav-item {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    width: 100%;
  }
  .navbar .nav-item.dropdown {
    flex-direction: column;
  }
  .navbar .nav-item.dropdown .dropdown-menu {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    justify-content: flex-start;
  }
  .navbar .toggler {
    display: block;
  }
  .offcanvas .offcanvas-header {
    padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    justify-content: space-between;
  }
  .offcanvas .offcanvas-header .logo {
    font-size: 1.25rem;
  }
  .offcanvas .offcanvas-header .logo span {
    margin-right: 0.5rem;
  }
  .offcanvas .offcanvas-header .btn-close {
    margin: 0;
  }
  .offcanvas .offcanvas-body .navbar-nav {
    margin-top: 0;
  }
  .offcanvas .offcanvas-body .search {
    position: inherit;
    margin-top: 1rem;
  }
  .nav-link {
    justify-content: flex-start;
  }
  .dropdown-menu .dropdown-item {
    text-align: center;
  }
  .dropdown-menu.langswitch {
    min-width: 72px;
  }
  .nav-link.active::before, .nav-link:hover::before {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .offcanvas.offcanvas-end {
    width: 60%;
  }
}
@media screen and (max-width: 576px) {
  .offcanvas.offcanvas-end {
    width: 90%;
  }
  .navbar {
    padding: 1rem 5.2%;
  }
  .navbar .logo .logo-text {
    font-size: 1.25rem;
  }
  .offcanvas .offcanvas-header {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .navbar .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
/* === 基本設定 === */
.custom-toggler {
  position: absolute;
  width: 34px;
  height: 26px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 1051;
  opacity: 1;
  transition: opacity 0.35s ease;
}

@media screen and (max-width: 1200px) {
  .custom-toggler {
    top: 33px;
    right: 53px;
  }
}
@media screen and (max-width: 576px) {
  .custom-toggler {
    top: 1.35rem;
    right: 1rem;
  }
}

.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}

/* 三條線 */
.toggler-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.25s ease;
}

.top-bar {
  top: 0;
}

.middle-bar {
  top: 50%;
  transform: translateY(-50%);
}

.bottom-bar {
  bottom: 0;
}

/* === 打叉動畫 === */
.custom-toggler.active .top-bar {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.custom-toggler.active .middle-bar {
  opacity: 0;
}

.custom-toggler.active .bottom-bar {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .offcanvas.offcanvas-end {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }
  /* 開啟時（淡入） */
  .offcanvas.show {
    opacity: 1;
  }
  /* 關閉時（淡出） */
  .offcanvas.hiding {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }
}
.home .homeSwiper {
  width: 100%;
  height: 100dvh; /* iOS 16+ 正確實際高度 */
  min-height: 100svh; /* Safari 15.4+ safe value */
  overflow: hidden;
  position: relative;
}
.home .homeSwiper .swiper-wrapper {
  position: relative;
}
.home .homeSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background-color: rgb(10, 21, 41);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home .homeSwiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.home .homeSwiper .swiper-slide .machine {
  width: auto;
  position: absolute;
  z-index: 2;
  top: calc(20% + 166px);
  right: 5%;
}
.home .homeSwiper .swiper-slide .banner-block {
  z-index: 1;
}
.home .homeSwiper .swiper-slide .banner-block::before {
  content: "";
  inset: 0; /* 等同 top/right/bottom/left = 0 */
  pointer-events: none; /* 不影響滑動等互動 */
  background: linear-gradient(0deg, rgba(10, 21, 41, 0.6), rgba(10, 21, 41, 0.6));
  background-blend-mode: hard-light, normal;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
}
.home .homeSwiper .swiper-slide .banner-block img {
  opacity: 0.8;
}
.home .homeSwiper .swiper-slide .banner-block .pc-img {
  display: block;
}
@media screen and (max-width: 992px) {
  .home .homeSwiper .swiper-slide .banner-block .pc-img {
    display: none;
  }
}
.home .homeSwiper .swiper-slide .banner-block .sp-img {
  display: none;
}
@media screen and (max-width: 992px) {
  .home .homeSwiper .swiper-slide .banner-block .sp-img {
    display: block;
  }
}
.home .homeSwiper .swiper-slide.imagephoto::before {
  content: "";
  inset: 0; /* 等同 top/right/bottom/left = 0 */
  pointer-events: none; /* 不影響滑動等互動 */
  background: linear-gradient(0deg, rgba(10, 21, 41, 0.6), rgba(10, 21, 41, 0.6));
  background-blend-mode: hard-light, normal;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
}
.home .homeSwiper .swiper-pagination {
  width: auto;
  left: 200px;
  bottom: 24.2%;
}
.home .homeSwiper .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: inherit;
}
.home .homeSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.25rem;
  background-color: white;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
  transform: scaleX(1);
}
.home .homeSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1485FF;
  transform: scaleX(2);
  margin: 0 1.25rem;
}
.home .homeSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: #1485FF;
  opacity: 0.5;
}
.home .homeSwiper .swiper-button-next:after,
.home .homeSwiper .swiper-button-prev:after {
  transform: scaleY(1.5);
  color: rgba(255, 255, 255, 0.5);
}
.home .homeSwiper .swiper-button-next:hover:after,
.home .homeSwiper .swiper-button-prev:hover:after {
  color: rgba(244, 223, 49, 0.5);
}
.home .swiper-title {
  position: absolute;
  top: calc(20% + 166px);
  left: 10%;
  z-index: 2;
  color: white;
  pointer-events: none; /* ✅ 不攔截滑動 */
}
.home .swiper-title h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.home .swiper-title h1 span span {
  color: #F4DF31;
}
.home .swiper-title h5 {
  font-size: 1.325rem;
  line-height: 2.625rem;
}
.home .swiper-title .morebtn {
  border-color: white;
}
.home .swiper-title .morebtn .inner-block {
  border: none;
}
.home.ja .swiper-title h5 {
  width: 88%;
}
.home.en .swiper-title, .home.es .swiper-title {
  top: calc(14% + 166px);
}
.home.en .swiper-title h5, .home.es .swiper-title h5 {
  width: 50%;
  line-height: inherit;
}
.home.en .swiper-title .morebtn, .home.es .swiper-title .morebtn {
  border-color: white;
}
.home.en .swiper-title .morebtn .inner-block, .home.es .swiper-title .morebtn .inner-block {
  border: none;
}
.home .scrolldown-block {
  position: absolute;
  bottom: 3%;
  width: 100%;
  height: auto;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.home .scrolldown {
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  z-index: 9;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.home .scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
}
.home .scrolldown:hover {
  transform: translateY(-8px);
}
@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}
.home .chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .chevrons .chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}
.home .chevrons .chevrondown:nth-child(odd) {
  animation: pulse 500ms ease infinite alternate;
}
.home .chevrons .chevrondown:nth-child(even) {
  animation: pulse 500ms ease infinite alternate 250ms;
}
@keyframes pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1400px) {
  .home .homeSwiper .swiper-slide.imagephoto img,
  .home .homeSwiper .swiper-slide .banner-block img {
    width: auto;
    height: 100dvh; /* Dynamic viewport height - iOS16+, Android Chrome */
    min-height: 100svh; /* Smallest safe viewport height - Safari 15.4+ */
    min-height: 100lvh; /* Largest safe viewport height - 部分瀏覽器 */
  }
  .home .homeSwiper .swiper-slide .machine {
    width: 60%;
    top: 42.5%;
  }
  .home .homeSwiper .swiper-pagination {
    left: 10%;
  }
  .home.zh .swiper-title h5 {
    width: 55%;
  }
  .home.ja .swiper-title h5 {
    width: 48%;
  }
  .home.en .swiper-title, .home.es .swiper-title {
    top: calc(14% + 166px);
  }
  .home.en .swiper-title h5, .home.es .swiper-title h5 {
    width: 30%;
    line-height: inherit;
  }
  .home.en .swiper-title .morebtn, .home.es .swiper-title .morebtn {
    border-color: white;
  }
  .home.en .swiper-title .morebtn .inner-block, .home.es .swiper-title .morebtn .inner-block {
    border: none;
  }
}
@media screen and (max-width: 1024px) {
  .home .homeSwiper .swiper-slide .machine {
    width: 78%;
    top: 45%;
    left: 50%;
    transform: translatex(-50%);
  }
  .home .homeSwiper .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 27.5%;
  }
  .home .homeSwiper .swiper-button-next,
  .home .homeSwiper .swiper-button-prev {
    display: none;
  }
  .home .homeSwiper .swiper-pagination {
    bottom: 17.5%;
  }
  .home .homeSwiper .swiper-title {
    top: 20%;
  }
  .home .homeSwiper .swiper-title h5 {
    width: 80%;
  }
  .home.zh .swiper-title h5, .home.ja .swiper-title h5 {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .home .swiper-title {
    padding: 0 8%;
    top: 30%;
    left: 0;
    margin-top: -16%;
  }
  .home .swiper-title h1 {
    font-size: 2.75rem;
  }
  .home.en .swiper-title, .home.es .swiper-title {
    top: 24%;
  }
  .home .homeSwiper .swiper-slide.imagephoto img {
    width: auto;
    height: 100dvh; /* Dynamic viewport height - iOS16+, Android Chrome */
    min-height: 100svh; /* Smallest safe viewport height - Safari 15.4+ */
    min-height: 100lvh; /* Largest safe viewport height - 部分瀏覽器 */
  }
  .home .homeSwiper .swiper-slide .banner-block img {
    width: 100dvw;
    height: auto;
  }
  .home .homeSwiper .swiper-slide .machine {
    width: 90%;
    top: 45%;
  }
  .home .homeSwiper .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 27.5%;
  }
  .home .homeSwiper .swiper-button-next,
  .home .homeSwiper .swiper-button-prev {
    display: none;
  }
  .home .homeSwiper .swiper-pagination {
    bottom: 17.5%;
  }
  .home .swiper-title h1::after {
    width: 100%;
  }
  .home .scrolldown-block {
    bottom: 3%;
  }
}
@media screen and (max-width: 820px) {
  .home.en .swiper-title, .home.es .swiper-title {
    top: 32.5%;
  }
  .home.en .swiper-title h5, .home.es .swiper-title h5 {
    line-height: inherit;
  }
}
@media screen and (max-width: 768px) {
  .home .swiper-title h1 {
    font-size: 2.5rem;
  }
  .home.en .swiper-title, .home.es .swiper-title {
    top: 30%;
  }
  .home.en .swiper-title h5, .home.es .swiper-title h5 {
    line-height: inherit;
  }
}
@media screen and (max-width: 576px) {
  .home .homeSwiper .swiper-slide .machine {
    width: 90%;
    top: 53.5%;
  }
  .home .homeSwiper .swiper-slide .banner-block img {
    width: auto;
    height: 100dvh;
  }
  .home .homeSwiper .swiper-pagination {
    bottom: calc(clamp(20vh, 36vh, 100px) + env(safe-area-inset-bottom));
  }
  .home .swiper-title {
    top: 25%;
  }
  .home .swiper-title h1 {
    margin-bottom: 2rem;
  }
  .home .swiper-title h5 {
    font-size: 0.9rem;
    line-height: 2rem;
  }
  .home.en .swiper-title, .home.es .swiper-title {
    top: 20%;
  }
  .home.en .swiper-title h1, .home.es .swiper-title h1 {
    margin-bottom: 2rem;
  }
  .home.en .swiper-title h5, .home.es .swiper-title h5 {
    line-height: 1.15rem;
  }
}
@media screen and (max-width: 375px) {
  .home .swiper-title {
    top: 30%;
  }
  .home .swiper-title h5 {
    display: none;
  }
  .home.en .swiper-title, .home.es .swiper-title {
    top: 30%;
  }
  .home.en .swiper-title h5, .home.es .swiper-title h5 {
    display: none;
  }
}

.productseries-menu {
  z-index: 10;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
.productseries-menu .swiper {
  max-width: calc(100% - 120px);
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide {
  padding: 1.75rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card {
  width: 100%;
  height: 316px;
  perspective: 1000px;
  border: none;
  /* ✅ 翻牌效果：只有大於1200px 的桌機才啟用 */
}
@media (min-width: 1201px) {
  .productseries-menu .swiper .swiper-wrapper .swiper-slide .card:hover .card-inner {
    transform: rotateY(180deg);
  }
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /* ✅ <=1200px 直接禁止翻牌，固定顯示正面 */
}
@media (max-width: 1200px) {
  .productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-inner {
    transform: none !important;
  }
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-front,
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-front {
  background: #fff;
  z-index: 2;
  justify-content: center;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-front h5 {
  color: #666666;
  border: #dddddd 1px solid;
  padding: 10px 30px;
  margin-top: 1rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-front .card-img {
  width: 342px;
  height: 256px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back {
  background: #f5f5f5;
  transform: rotateY(180deg);
  color: white;
  font-weight: bold;
  justify-content: flex-start;
  padding-top: 3.75rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back h5 {
  position: relative;
  margin-bottom: 2rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back h5::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background: white;
  left: 50%;
  bottom: -0.5rem;
  margin-left: -25%;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back .card-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1rem;
  padding: 0 1rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.production-line {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_line.webp) no-repeat;
  background-size: cover;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.mixer {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_mixer.webp) no-repeat;
  background-size: cover;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.powder-grinder {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_grinding.webp) no-repeat;
  background-size: cover;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.mill {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_crush.webp) no-repeat;
  background-size: cover;
  padding-top: 2.75rem;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.cuttingcrushmachine {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_cut.webp) no-repeat;
  background-size: cover;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.sieving-machine {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_powder.webp) no-repeat;
  background-size: cover;
}
.productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back.packaging-machine {
  background: linear-gradient(0deg, rgba(0, 31, 65, 0.5), rgba(0, 31, 65, 0.5)), url(../../assets/img/products/img_packaging.webp) no-repeat;
  background-size: cover;
}
.productseries-menu .swiper-productseries-button-prev,
.productseries-menu .swiper-productseries-button-next {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -25px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #cccccc 1px solid;
  background: white;
}
@media screen and (max-width: 576px) {
  .productseries-menu .swiper-productseries-button-prev,
  .productseries-menu .swiper-productseries-button-next {
    top: inherit;
    bottom: 30px;
  }
}
.productseries-menu .swiper-productseries-button-prev:hover,
.productseries-menu .swiper-productseries-button-next:hover {
  background: #2169B6;
  color: white;
  border: #2169B6 1px solid;
}
.productseries-menu .swiper-productseries-button-prev {
  left: 1rem;
}
.productseries-menu .swiper-productseries-button-next {
  right: 1rem;
}

.en .productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back .card-menu p, .es .productseries-menu .swiper .swiper-wrapper .swiper-slide .card .card-inner .card-back .card-menu p {
  margin-bottom: 0;
}

.es .productseries-menu .swiper .swiper-wrapper .swiper-slide.mill .card .card-inner .card-back {
  padding-top: 1.5rem;
}

.ja .productseries-menu .swiper .swiper-wrapper .swiper-slide.mill .card .card-inner .card-back .card-menu p {
  margin-bottom: 0.35rem;
}

footer {
  overflow: hidden;
  border-top: #dddddd 1px solid;
}
footer .container-fluid {
  padding: 0 7.3%;
}
@media screen and (max-width: 1200px) {
  footer .container-fluid {
    padding: 0 3%;
  }
}
@media screen and (max-width: 960px) {
  footer .container-fluid {
    padding: 0 6%;
  }
}
footer .left-block {
  border-right: #dddddd 1px solid;
  padding-top: 60px;
  padding-left: 0;
}
@media screen and (max-width: 1200px) {
  footer .left-block {
    padding-left: 12px;
  }
}
@media screen and (max-width: 960px) {
  footer .left-block {
    border-right: none;
  }
}
footer .logo {
  margin-bottom: 2rem;
  width: 472px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1A2545;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  footer .logo {
    font-size: 1.6rem;
  }
  footer .logo img {
    height: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  footer .logo {
    margin-bottom: 1.5rem;
    font-size: 1.45rem;
  }
  footer .logo img {
    height: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  footer .logo {
    font-size: 1.3rem;
  }
  footer .logo img {
    height: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  footer .logo {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  footer .logo {
    font-size: 1.3rem;
  }
}
footer .company-info {
  padding-left: 72px;
}
@media screen and (max-width: 1400px) {
  footer .company-info {
    padding-left: 8px;
  }
}
@media screen and (max-width: 960px) {
  footer .company-info {
    padding-left: 0;
  }
}
footer .company-info ul {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
footer .company-info ul li {
  display: flex;
  column-gap: 2.25rem;
  font-size: 1rem;
}
footer .company-info ul li .iconblock {
  border-radius: 0.3rem;
  height: 30px;
}
footer .company-info ul li a:hover .icon-phone,
footer .company-info ul li a:hover .icon-fax,
footer .company-info ul li a:hover .icon-address,
footer .company-info ul li a:hover .icon-email,
footer .company-info ul li a:hover .icon-code,
footer .company-info ul li a:hover .icon-chat {
  background-color: #2169B6;
}
footer .company-info ul li .icon-phone,
footer .company-info ul li .icon-fax,
footer .company-info ul li .icon-address,
footer .company-info ul li .icon-email,
footer .company-info ul li .icon-code,
footer .company-info ul li .icon-chat {
  width: 30px;
  height: 30px;
  background-color: #666666;
  -webkit-mask-size: contain;
  mask-size: contain;
}
footer .company-info ul li > div, footer .company-info ul li > a {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
footer .company-info ul li .icon-phone {
  -webkit-mask: url("../../assets/img/img_icon_phone.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_phone.svg") no-repeat center;
}
footer .company-info ul li .icon-fax {
  -webkit-mask: url("../../assets/img/img_icon_fax.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_fax.svg") no-repeat center;
}
footer .company-info ul li .icon-address {
  -webkit-mask: url("../../assets/img/img_icon_address.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_address.svg") no-repeat center;
}
footer .company-info ul li .icon-email {
  -webkit-mask: url("../../assets/img/img_icon_email.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_email.svg") no-repeat center;
}
footer .company-info ul li .icon-code {
  -webkit-mask: url("../../assets/img/img_icon_code.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_code.svg") no-repeat center;
}
footer .company-info ul li .icon-chat {
  -webkit-mask: url("../../assets/img/img_icon_chat.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_chat.svg") no-repeat center;
}
footer .company-info .btn-contact {
  width: 200px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px #666666 solid;
  border-radius: 0.25rem;
}
footer .company-info .btn-contact:hover {
  background-color: #2169B6;
  color: white;
  border-color: #2169B6;
}
footer .company-info .btn-contact:hover .icon-chat {
  transform-origin: center; /* 軸心在中央 */
  animation: swing 0.5s ease-in-out infinite alternate;
  background-color: white;
}
@keyframes swing {
  from {
    transform: rotate(-10deg) scale(1.2);
  }
  to {
    transform: rotate(10deg) scale(1.2);
  }
}
@media screen and (max-width: 960px) {
  footer .company-info .btn-contact {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 960px) {
  footer .footer-menu-products {
    padding: 78px 0 60px 3.5%;
  }
}
footer .footer-menu-products h5 {
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
}
footer .footer-menu-products ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  width: auto;
}
footer .footer-menu-products li {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
footer .footer-menu-products li a {
  color: #666666;
}
footer .footer-menu-products li a:hover {
  color: #2169B6;
}
footer .footer-menu-products li::after {
  content: "|";
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
footer .footer-menu-products li:last-child::after {
  content: "";
}
footer .footer-menu {
  padding-top: 78px;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  footer .footer-menu {
    padding-left: 12px;
  }
}
@media screen and (max-width: 960px) {
  footer .footer-menu {
    padding-top: 0;
    padding-bottom: 60px;
    justify-content: flex-start;
  }
}
footer .footer-menu li {
  color: #333333;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
footer .footer-menu li a {
  color: #333333;
}
footer .footer-menu li a:hover {
  color: #2169B6;
}
footer .copyright {
  border-top: #dddddd 1px solid;
  padding: 20px 0;
  color: #666666;
  font-size: 0.9rem;
}

@media screen and (max-width: 1200px) {
  footer .container .footer-menu {
    display: flex;
  }
  footer .container .footer-menu .footer-menu-inner-block {
    flex-direction: column;
    row-gap: 1rem;
  }
}
/* 頁面 */
.home {
  /* 進場動畫 */
  /* 滑鼠進入動畫 */
}
.home .home-section {
  overflow: hidden;
}
.home .products {
  margin-top: 66px;
  padding: 54px 0 60px 0;
}
.home .products .content-title {
  padding-bottom: 1.25rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .home .products .content-title {
    margin-bottom: 40px;
  }
}
.home .jarallax {
  height: clamp(480px, 60vh, auto);
  overflow: hidden;
}
.home .jarallax-img {
  background-image: linear-gradient(0deg, rgba(26, 37, 69, 0.6), rgba(26, 37, 69, 0.6)), url("../../assets/img/img_home_parallax.webp");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: hard-light, normal;
}
.home .solution .container {
  display: flex;
  align-items: center;
  padding: 10rem 0;
}
.home .solution .container .solution-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.home .solution .container .solution-inner .solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 1rem;
  background: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.home .solution .container .solution-inner .solution-card p {
  margin-bottom: 0;
  text-align: center;
}
.home .solution .container .solution-inner .solution-card .icon-solution {
  width: 192px;
  height: 123px;
  margin-bottom: 1.15rem;
  background-color: #2169B6;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home .solution .container .solution-inner .solution-card .icon-solution.sol-1 {
  -webkit-mask: url("../../assets/img/icon_solution1.svg") no-repeat center;
  mask: url("../../assets/img/icon_solution1.svg") no-repeat center;
}
.home .solution .container .solution-inner .solution-card .icon-solution.sol-2 {
  -webkit-mask: url("../../assets/img/icon_solution2.svg") no-repeat center;
  mask: url("../../assets/img/icon_solution2.svg") no-repeat center;
}
.home .solution .container .solution-inner .solution-card .icon-solution.sol-3 {
  -webkit-mask: url("../../assets/img/icon_solution3.svg") no-repeat center;
  mask: url("../../assets/img/icon_solution3.svg") no-repeat center;
}
.home .solution .container .solution-inner .solution-card .icon-solution.sol-4 {
  -webkit-mask: url("../../assets/img/icon_solution4.svg") no-repeat center;
  mask: url("../../assets/img/icon_solution4.svg") no-repeat center;
}
.home .solution .container .solution-inner .solution-card .icon-solution.sol-5 {
  -webkit-mask: url("../../assets/img/icon_solution5.svg") no-repeat center;
  mask: url("../../assets/img/icon_solution5.svg") no-repeat center;
}
@media (min-width: 992px) {
  .home .solution .container .solution-inner .solution-card:hover {
    background: #2169B6;
  }
  .home .solution .container .solution-inner .solution-card:hover p {
    color: white;
  }
  .home .solution .container .solution-inner .solution-card:hover .icon-solution {
    background-color: white;
  }
}
@media (max-width: 992px) {
  .home .solution .container .solution-inner .solution-card:hover {
    background-color: white;
  }
  .home .solution .container .solution-inner .solution-card:hover p {
    color: #2169B6;
  }
  .home .solution .container .solution-inner .solution-card:hover .icon-solution {
    background-color: #2169B6;
  }
}
.home [data-aos=jump-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.home [data-aos=jump-anim].aos-animate {
  opacity: 1;
  transform: translateY(0);
  animation: jump 1s ease-in-out;
}
.home .aos-animate-show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-2rem);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump-hover {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-1.5rem);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-0.3rem);
  }
  100% {
    transform: translateY(0);
  }
}
.home .news {
  padding: 80px 9.3% 120px;
}
.home .news h2 {
  font-size: 1.5rem;
  color: #2169B6;
  border-bottom: #ccc 1px solid;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.home .news .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 6.25%;
}
.home .news .news-list .news-card {
  flex: 1 1 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border: none;
  height: auto;
}
.home .news .news-list .news-card .news-photo {
  overflow: hidden;
  width: 236px;
}
@media screen and (max-width: 576px) {
  .home .news .news-list .news-card .news-photo {
    width: 100%;
  }
}
.home .news .news-list .news-card .news-card-body {
  padding-top: 0.5rem;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}
.home .news .news-list .news-card .news-card-body .data span {
  position: relative;
}
.home .news .news-list .news-card .news-card-body .data span::before {
  content: "";
  background: #2169B6;
  width: 100%;
  height: 2px;
  position: absolute;
  top: -0.5rem;
}
.home .news .news-list .news-card .news-card-body .data, .home .news .news-list .news-card .news-card-body p {
  color: #666666;
  font-size: 0.85rem;
}
.home .news .news-list .news-card .news-card-body .title {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.home .news .news-list .news-card .news-card-body .readmore {
  display: flex;
  justify-self: flex-end;
  align-self: flex-end;
  font-size: 0.85rem;
  margin-right: -0.85rem;
}
.home .news .news-list .news-card .news-card-body .readmore span {
  opacity: 0;
  margin-left: 0;
}
.home .news .news-list .news-card:hover .news-photo img {
  transform: scale(1.1);
}
.home .news .news-list .news-card:hover .news-card-body .data, .home .news .news-list .news-card:hover .news-card-body p {
  color: #666666;
}
.home .news .news-list .news-card:hover .news-card-body .readmore {
  margin-right: 0rem;
}
.home .news .news-list .news-card:hover .news-card-body .readmore span {
  opacity: 1;
  margin-left: 0.5rem;
}
.home .contact {
  background: #2169B6;
  color: white;
}
.home .contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.home .contact .container p {
  margin: 0;
  font-size: 1.5rem;
}
.home .contact .container .btn-contact {
  font-size: 1.75rem;
  border-radius: 16px;
  border: 1px white solid;
  min-width: 300px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.home .contact .container .btn-contact .iconblock {
  height: 2.25rem;
  margin-right: 0.5rem;
}
.home .contact .container .btn-contact .icon-chat {
  width: 2.25rem;
  height: 2.25rem;
  background-color: white;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home .contact .container .btn-contact .icon-chat {
  -webkit-mask: url("../../assets/img/img_icon_chat.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_chat.svg") no-repeat center;
  transform: scale(1.5);
}
.home .contact .container .btn-contact:hover {
  cursor: pointer;
  background-color: white;
  color: #2169B6;
}
.home .contact .container .btn-contact:hover .icon-chat {
  transform-origin: center; /* 軸心在中央 */
  animation: swing 0.5s ease-in-out infinite alternate;
  background-color: #2169B6;
}
@media screen and (max-width: 960px) {
  .home .contact .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home .contact .container p {
    font-size: 1.25rem;
    padding: 0 2.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 1400px) {
  .home .home-section {
    background-position: right;
    background-size: auto 100%;
  }
}
.en.home .solution .container .solution-inner .solution-card, .es.home .solution .container .solution-inner .solution-card {
  height: calc(240px + 2rem);
  padding: 0 1rem;
}

.aboutus-section {
  margin: 120px 0;
  color: #666666;
  overflow-x: hidden;
}
.aboutus-section h1 {
  color: #2169B6;
  font-weight: bold;
}
.aboutus-section .company .paragraph .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.aboutus-section .company .paragraph .content .certification {
  align-self: flex-end;
  display: flex;
  column-gap: 48px;
  text-align: center;
  color: #2169B6;
  font-weight: bolder;
  font-size: 21px;
  margin-top: 54px;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .company .paragraph .content .certification {
    margin-top: 10.8px;
  }
}
@media screen and (max-width: 1200px) {
  .aboutus-section .company .paragraph .content .certification {
    margin-top: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .company .paragraph .content .certification {
    align-self: center;
  }
}
.aboutus-section .company .paragraph .content .certification .icon {
  width: 144px;
  height: 120px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .company .paragraph .content .certification .icon {
    width: 115.2px;
    height: 96px;
  }
}
@media screen and (max-width: 1200px) {
  .aboutus-section .company .paragraph .content .certification .icon {
    width: 86.4px;
    height: 72px;
  }
}
.aboutus-section .company .paragraph .content .certification .icon img {
  width: auto;
  height: 100%;
}
.aboutus-section .company .paragraph:first-child .content.con-right {
  height: 360px;
  background: url(../../assets/img/aboutus/img-aboutus-1.webp) center no-repeat;
  background-size: 100% auto;
}
.aboutus-section .company .paragraph:first-child .content h1 {
  margin-bottom: 1.5rem;
}
.aboutus-section .company .paragraph:first-child .content .content-inner {
  max-width: 624px;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .company .paragraph:first-child .content .content-inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .company .paragraph:first-child .content .content-inner {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .company .paragraph:first-child .content .content-inner {
    max-width: 87%;
  }
}
.aboutus-section .company .paragraph:last-child .content {
  justify-content: flex-end;
}
.aboutus-section .company .paragraph:last-child .content.con-left {
  height: 440px;
  background: url(../../assets/img/aboutus/img-aboutus-2.webp) right top -4.4rem no-repeat;
  background-size: 150% auto;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .company .paragraph:last-child .content.con-left {
    background-position: right top -3rem;
    height: 352px;
  }
}
@media screen and (max-width: 1200px) {
  .aboutus-section .company .paragraph:last-child .content.con-left {
    background-position: right top;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .company .paragraph:last-child .content.con-left {
    background-position: right top -3rem;
    height: 440px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .company .paragraph:last-child .content.con-left {
    background-position: right top;
    height: 280px;
  }
}
.aboutus-section .company .paragraph:last-child .content .content-inner {
  max-width: 672px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .company .paragraph:last-child .content .content-inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .company .paragraph:last-child .content .content-inner {
    margin-top: 60px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .company .paragraph:last-child .content .content-inner {
    max-width: 84.5%;
    margin-bottom: 60px;
  }
}
.aboutus-section .company .paragraph:last-child .content .content-inner p {
  margin-bottom: 1.5rem;
}
.aboutus-section .business {
  padding: 160px 7.2%;
}
.aboutus-section .business h1 {
  text-align: center;
  margin-bottom: 60px;
}
.aboutus-section .business .paragraph {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .business .paragraph {
    justify-content: center;
    column-gap: 120px;
    row-gap: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .aboutus-section .business .paragraph {
    column-gap: 60px;
    row-gap: 60px;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .business .paragraph {
    column-gap: 30px;
    row-gap: 60px;
  }
}
.aboutus-section .business .paragraph .business-card {
  text-align: center;
}
.aboutus-section .business .paragraph .business-card .card-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}
@media screen and (max-width: 1200px) {
  .aboutus-section .business .paragraph .business-card .card-img {
    width: 224px;
    height: 224px;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .business .paragraph .business-card .card-img {
    width: 196px;
    height: 196px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .business .paragraph .business-card .card-img {
    width: 252px;
    height: 252px;
  }
}
.aboutus-section .business .paragraph .business-card p {
  width: 280px;
  margin-top: 16px;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .aboutus-section .business .paragraph .business-card p {
    width: 224px;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .business .paragraph .business-card p {
    width: 196px;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .business .paragraph .business-card p {
    width: 252px;
  }
}
.aboutus-section .business .paragraph .business-card .card-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.aboutus-section .business .paragraph .business-card:nth-child(1) .card-img {
  background-image: url(../img/aboutus/img-aboutus-business-1.png);
}
.aboutus-section .business .paragraph .business-card:nth-child(2) .card-img {
  background-image: url(../img/aboutus/img-aboutus-business-2.png);
}
.aboutus-section .business .paragraph .business-card:nth-child(3) .card-img {
  background-image: url(../img/aboutus/img-aboutus-business-3.png);
}
.aboutus-section .business .paragraph .business-card:nth-child(4) .card-img {
  background-image: url(../img/aboutus/img-aboutus-business-4.png);
}
.aboutus-section .business .paragraph .business-card:nth-child(5) .card-img {
  background-image: url(../img/aboutus/img-aboutus-business-5.png);
}
.aboutus-section .application {
  padding-left: 0;
  padding-right: 0;
}
.aboutus-section .application h1 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .aboutus-section .application h1 {
    margin-bottom: 30px;
  }
}
.aboutus-section .application .text.sp {
  padding: 0 5% 2.5%;
  text-align: center;
  line-height: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .aboutus-section .application .text.sp {
    display: inherit;
  }
}
.aboutus-section .application .paragraph {
  position: relative;
  overflow-x: hidden;
  /* RWD 每張圖片寬度 */
}
.aboutus-section .application .paragraph .text {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 700px;
  padding: 24px 0;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  left: calc(50% - 350px);
  top: calc(50% - 35px);
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .application .paragraph .text {
    top: calc(50% - 80px);
  }
}
@media screen and (max-width: 1200px) {
  .aboutus-section .application .paragraph .text {
    top: calc(50% - 100px);
  }
}
@media screen and (max-width: 1024px) {
  .aboutus-section .application .paragraph .text {
    display: none;
  }
}
.aboutus-section .application .paragraph .marquee {
  display: flex;
  will-change: transform;
}
.aboutus-section .application .paragraph .app-card {
  flex: 0 0 auto;
  height: 320px;
}
.aboutus-section .application .paragraph .app-card img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .aboutus-section .application .paragraph .app-card {
    width: 20%; /* 顯示 5 張 */
  }
}
@media (max-width: 1023px) {
  .aboutus-section .application .paragraph .app-card {
    width: 33.3333333333%; /* 顯示 3 張 */
    height: 120px;
  }
}
.aboutus-section .history .paragraph {
  padding: 120px 3.75% 0;
}
.aboutus-section .history .paragraph .timecard {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: bold;
  width: 100%;
  height: 180px;
}
.aboutus-section .history .paragraph .timecard::after {
  position: absolute;
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  bottom: 0;
  right: 0;
  background-color: #dddddd;
}
.aboutus-section .history .paragraph .timecard:last-child::after {
  display: none;
}
.aboutus-section .history .paragraph .timecard .dot-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1rem;
  height: 100%;
}
.aboutus-section .history .paragraph .timecard .dot-block .dot {
  width: 1rem;
  height: 1rem;
  background-color: #2169B6;
  border-radius: 50%;
  z-index: 1;
}
.aboutus-section .history .paragraph .timecard .dot-block::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.25rem;
  background-color: #dddddd;
  left: calc(50% - 0.125rem);
}
.aboutus-section .history .paragraph .timecard .time {
  padding-left: 42px;
}
@media screen and (max-width: 576px) {
  .aboutus-section .history .paragraph .timecard .time {
    padding-left: 24px;
  }
}
.aboutus-section .history .paragraph .timecard .project {
  margin-left: auto;
  width: 60%;
}
@media screen and (max-width: 1400px) {
  .aboutus-section .history .paragraph .timecard .project {
    width: 64%;
  }
}
@media screen and (max-width: 992px) {
  .aboutus-section .history .paragraph .timecard .project {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .aboutus-section .history .paragraph .timecard .project {
    width: 60%;
    font-size: 1.1rem;
  }
}

.en .aboutus-section .company .paragraph .content .certification, .es .aboutus-section .company .paragraph .content .certification {
  margin-top: 21px;
}
@media screen and (max-width: 1400px) {
  .en .aboutus-section .company .paragraph:last-child .content.con-left, .es .aboutus-section .company .paragraph:last-child .content.con-left {
    background-position: right top calc(-3rem + 60px);
    height: 476px;
    background-size: 166% auto;
  }
}
@media screen and (max-width: 576px) {
  .en .aboutus-section .company .paragraph:last-child .content.con-left, .es .aboutus-section .company .paragraph:last-child .content.con-left {
    background-position: right top;
    height: 280px;
  }
}
.en .aboutus-section .application .paragraph .text, .es .aboutus-section .application .paragraph .text {
  top: calc(50% - 55.5px);
}
@media screen and (max-width: 576px) {
  .en .aboutus-section .history .paragraph .timecard:first-child, .es .aboutus-section .history .paragraph .timecard:first-child {
    height: 280px;
  }
}
@media screen and (max-width: 576px) {
  .en .aboutus-section .history .paragraph .timecard .time, .es .aboutus-section .history .paragraph .timecard .time {
    font-size: 1.1rem;
    padding-left: 16px;
  }
}

.products :focus {
  outline: none;
  box-shadow: none;
}
.products .products-section {
  margin-top: 110px;
  padding-bottom: 120px;
  overflow: hidden;
}
.products .products-section .product-series {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.7% 4.6%;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.products .products-section .product-series .product-series-card {
  position: relative;
  background: white;
  display: flex;
  width: 100%;
  column-gap: 1.25rem;
  padding: 1.75rem;
  border: #cccccc 1px solid;
  z-index: 1;
}
.products .products-section .product-series .product-series-card .card-img {
  width: 376px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .products-section .product-series .product-series-card .card-body {
  width: calc(100% - 376px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .products .products-section .product-series .product-series-card .card-body {
    width: 100%;
  }
}
.products .products-section .product-series .product-series-card .card-body .content {
  width: 100%;
  border-bottom: white 1px solid;
  margin-bottom: 1rem;
}
.products .products-section .product-series .product-series-card .card-body .title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 1rem;
}
.products .products-section .product-series .product-series-card .card-body .list ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}
.products .products-section .product-series .product-series-card .card-body .list ul li a {
  line-height: 2rem;
}
.products .products-section .product-series .product-series-card .card-body .list ul li::after {
  content: "/";
  margin-left: 0.5rem;
}
.products .products-section .product-series .product-series-card .card-body .list ul li:last-child::after {
  content: "";
  margin-left: 0;
}
.products .products-section .product-series .product-series-card .card-body .btn-more {
  align-self: flex-end;
  margin-right: -1rem;
}
.products .products-section .product-series .product-series-card .card-body .btn-more span {
  opacity: 0;
}
.products .products-section .product-series .product-series-card .card-body .btn-more:hover {
  margin-right: 0;
}
.products .products-section .product-series .product-series-card .card-body .btn-more:hover span {
  opacity: 1;
  margin-left: 0.25rem;
}
@media screen and (max-width: 1400px) {
  .products .products-section .product-series .product-series-card .card-img {
    width: 45%;
  }
  .products .products-section .product-series .product-series-card .card-body {
    width: 55%;
  }
}
@media screen and (max-width: 1200px) {
  .products .products-section .product-series .product-series-card {
    flex-wrap: wrap;
  }
  .products .products-section .product-series .product-series-card .card-img, .products .products-section .product-series .product-series-card .card-body {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .products .products-section .product-series .product-series-card {
    flex-wrap: wrap;
    row-gap: 2.5rem;
  }
}
.products .products-section .product-series::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transform: scale(1);
  transition: transform 1s ease-in-out, opacity 0.3s ease-in-out;
}
.products .products-section .product-series.production-line::before {
  background: url(../../assets/img/products/img_line.webp) center/cover no-repeat;
}
.products .products-section .product-series.mixer::before {
  background: url(../../assets/img/products/img_mixer.webp) center/cover no-repeat;
}
.products .products-section .product-series.powder-grinder::before {
  background: url(../../assets/img/products/img_grinding.webp) center/cover no-repeat;
}
.products .products-section .product-series.mill::before {
  background: url(../../assets/img/products/img_crush.webp) center/cover no-repeat;
}
.products .products-section .product-series.cuttingcrushmachine::before {
  background: url(../../assets/img/products/img_cut.webp) center/cover no-repeat;
}
.products .products-section .product-series.sieving-machine::before {
  background: url(../../assets/img/products/img_powder.webp) center/cover no-repeat;
}
.products .products-section .product-series.packaging-machine::before {
  background: url(../../assets/img/products/img_packaging.webp) center/cover no-repeat;
}
.products .products-section .product-series:hover::before {
  opacity: 1;
  transform: scale(1.1);
  z-index: 0;
}
.products .products-section .product-series:hover .product-series-card {
  border: 1px rgba(255, 255, 255, 0) solid;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.75); /* 半透明才能看到背後 */
  backdrop-filter: blur(10px); /* 模糊背後 */
  -webkit-backdrop-filter: blur(10px); /* Safari 需要前綴 */
}
.products .products-series-section {
  padding-top: 110px;
  margin-bottom: 120px;
}
@media screen and (max-width: 576px) {
  .products .products-series-section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.products .products-series-section > .container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.products .products-series-section .series-title {
  color: #2169B6;
  font-weight: bold;
}
.products .products-series-section .series-info {
  border-top: #cccccc 1px solid;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 80px;
  color: #666666;
  line-height: 2rem;
}
.products .products-series-section .series-list {
  margin-bottom: 120px;
}
.products .products-series-section .series-list .card {
  flex-direction: row;
  padding: 1.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.products .products-series-section .series-list .card .card-img {
  width: 276px;
  height: 232px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .products .products-series-section .series-list .card .card-img {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.products .products-series-section .series-list .card .card-body {
  height: 232px;
  width: 346px;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products .products-series-section .series-list .card .card-body .card-title {
  color: #333333;
  margin-bottom: 0.5rem;
}
.products .products-series-section .series-list .card .card-body .type {
  color: #999999;
}
.products .products-series-section .series-list .card .card-body .card-text {
  color: #666666;
  margin-top: 1.75rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.products .products-series-section .series-list .card .card-body .card-text ul {
  padding-left: 1rem;
  list-style-type: decimal;
}
.products .products-series-section .series-list .card .card-body .btn-more {
  color: #666666;
  align-self: flex-end;
  margin-right: -1rem;
}
.products .products-series-section .series-list .card .card-body .btn-more span {
  opacity: 0;
}
.products .products-series-section .series-list .card:hover {
  border-color: #2169B6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.products .products-series-section .series-list .card:hover .card-body .card-title {
  color: #2169B6;
}
.products .products-series-section .series-list .card:hover .card-body .btn-more {
  color: #2169B6;
  margin-right: 0;
}
.products .products-series-section .series-list .card:hover .card-body .btn-more span {
  opacity: 1;
  margin-left: 0.25rem;
}
@media screen and (max-width: 992px) {
  .products .products-series-section .series-list .card {
    flex-wrap: wrap;
  }
  .products .products-series-section .series-list .card .card-img, .products .products-series-section .series-list .card .card-body {
    width: 100%;
  }
}
.products .product-detail-section {
  padding-top: 110px;
  margin-bottom: 120px;
  color: #333333;
}
@media screen and (max-width: 992px) {
  .products .product-detail-section {
    padding-top: 40px;
  }
}
.products .product-detail-section .product-main {
  padding-left: 48px;
  overflow: hidden;
}
.products .product-detail-section .product-main .title {
  color: #2169B6;
  font-size: 2.25rem;
  font-weight: bold;
}
.products .product-detail-section .product-main .type {
  color: #666666;
  font-weight: bold;
  font-size: 1.25rem;
  padding-left: 0.25rem;
}
.products .product-detail-section .product-main .productSwiper {
  margin: 2.5rem 0;
  width: 100%;
}
.products .product-detail-section .product-main .productSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .products .product-detail-section .product-main .productSwiper .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
}
.products .product-detail-section .product-main .productionlineimg {
  margin: 2.5rem 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .products .product-detail-section .product-main .productionlineimg img {
    width: 100%;
  }
}
.products .product-detail-section .product-main .spec-list {
  margin-bottom: 3.75rem;
}
.products .product-detail-section .product-main .spec-list h2 {
  position: relative;
  color: #2169B6;
  font-size: 1.75rem;
  font-weight: bold;
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}
.products .product-detail-section .product-main .spec-list h2::before {
  content: "";
  position: absolute;
  width: 0.25rem;
  height: 1.75rem;
  background: #2169B6;
  top: 0.15rem;
  left: 0;
}
.products .product-detail-section .product-main .spec-list .text {
  position: relative;
  padding-left: 1rem;
}
.products .product-detail-section .product-main .spec-list .text::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 2px;
  background-color: #333333;
  left: 0;
  top: 0.7rem;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide {
  transition: all 0.3s ease-in-out;
  width: 77px;
  height: auto;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide .img-block {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 63.1px;
  padding: 0.25rem;
  margin-bottom: 0.25rem;
  border: 2px solid transparent;
  background-color: white;
  position: relative;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide .img-block::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide .img-block img {
  opacity: 0.5;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide img, .products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide span {
  width: 100%;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide:hover, .products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide.swiper-slide-thumb-active {
  color: #2169B6;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide:hover .img-block, .products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide.swiper-slide-thumb-active .img-block {
  border: 2px solid #2169B6;
  background-color: rgba(0, 0, 0, 0);
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide:hover .img-block img, .products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide.swiper-slide-thumb-active .img-block img {
  opacity: 1;
}
.products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide:hover .img-block::after, .products .product-detail-section .product-main .type-selection .productSwiper-thumbs .swiper-slide.swiper-slide-thumb-active .img-block::after {
  background-color: rgba(0, 0, 0, 0);
}
.products .product-detail-section .product-main .features .features-img {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.75rem;
}
@media screen and (max-width: 992px) {
  .products .product-detail-section .product-main .features .features-img {
    column-gap: 1rem;
  }
}
.products .product-detail-section .product-main .features .features-img .features-img-card {
  width: 20%;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 992px) {
  .products .product-detail-section .product-main .features .features-img .features-img-card {
    width: 30%;
  }
}
.products .product-detail-section .product-main .features .features-img .features-img-card .features-img-card-photo {
  width: 100%;
  height: 140px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  display: flex;
  align-self: center;
  justify-content: center;
  border: #cccccc 1px solid;
}
@media screen and (max-width: 992px) {
  .products .product-detail-section .product-main .features .features-img .features-img-card .features-img-card-photo {
    height: 100px;
  }
}
.products .product-detail-section .product-main .features .features-img .features-img-card img {
  height: 100%;
}
.products .product-detail-section .product-main .features .features-img .features-img-card:hover img {
  transform: scale(1.03);
}
.products .product-detail-section .product-main .features ul {
  padding-left: 2.5rem;
  list-style-type: decimal;
}
.products .product-detail-section .product-main .spec .spec-table {
  overflow-x: auto;
}
.products .product-detail-section .product-main .spec .spec-table table {
  min-width: 100%;
  table-layout: fixed; /* ✅ 關鍵：固定表格佈局，平均分配 */
  border-collapse: collapse;
  text-align: center;
}
.products .product-detail-section .product-main .spec .spec-table table thead {
  background-color: #2169B6;
  color: white;
}
.products .product-detail-section .product-main .spec .spec-table table tr th, .products .product-detail-section .product-main .spec .spec-table table tr td {
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}
.products .product-detail-section .product-main .spec .spec-table table tbody tr {
  cursor: pointer;
  transition: background-color 0.2s;
}
.products .product-detail-section .product-main .spec .spec-table table tbody tr:nth-child(even) {
  background-color: #F7F7F7;
}
.products .product-detail-section .product-main .spec .spec-table table tbody tr:hover {
  background-color: #BCD2E9;
}
.products .product-detail-section .product-main .spec .spec-table table tbody tr:last-child {
  border-bottom: #cccccc 1px solid;
}
.products .product-detail-section .product-main .spec .spec-notes {
  margin-top: 0.5rem;
}
.products .product-detail-section .product-main .video iframe {
  width: 100%;
  height: 537px;
}
@media screen and (max-width: 1200px) {
  .products .product-detail-section .product-main .video iframe {
    height: 360px;
  }
}
@media screen and (max-width: 992px) {
  .products .product-detail-section .product-main .video iframe {
    height: 260px;
  }
}
@media screen and (max-width: 576px) {
  .products .product-detail-section {
    padding-top: 30px;
  }
  .products .product-detail-section .product-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.products .swiper-productseries-block {
  width: 100%;
}
.products .products-menu .accordion-button {
  gap: 0.5rem;
}
.products .products-menu .list-group-item {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background-color: rgba(197, 219, 243, 0.3);
}
.products .products-menu .list-group-item a:hover {
  text-decoration: underline;
}
.products .products-menu .accordion-button:hover {
  background: rgba(33, 105, 182, 0.3);
}
.products .products-menu .accordion-button:not(.collapsed) {
  color: white;
  background-color: #2169B6;
}
.products .products-menu .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.products .products-menu .list-group-item a {
  color: #666666;
}
.products .products-menu .list-group-item a.text-primary {
  color: white;
}
.products .products-menu .list-group-item:hover {
  background-color: #3f6c9c;
}
.products .products-menu .list-group-item:hover a {
  color: white;
}
.products .products-menu .list-group-item.bg-color-primary {
  background-color: #3f6c9c;
}
@media screen and (max-width: 992px) {
  .products .products-menu {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .products .products-menu {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 992px) {
  .products .productmenublock .products-menu {
    display: none;
  }
}
.products .product-offcanvas {
  height: 100svh; /* 手機展開時佔螢幕高度 */
  overflow-y: auto; /* 內容可滾動 */
}
.products .productmenutoggle {
  margin-bottom: 3rem;
  border: #cccccc 1px solid;
  background: white;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  color: #666666;
}
.products .productmenutoggle:hover {
  background: #2169B6;
  color: white;
}

.product-detail-section .product-main .spec .spec-table.span-style table tr td {
  background-color: white;
}

.product-detail-section .product-main .spec .spec-table.span-style table tr.rowspan-2 td, .product-detail-section .product-main .spec .spec-table.span-style table tr.rowspan-4 td, .product-detail-section .product-main .spec .spec-table.span-style table tr.rowspan-6 td {
  background-color: #F7F7F7;
}

.product-detail-section .product-main .spec .spec-table.span-style table tr.hover {
  background-color: #BCD2E9;
}
.product-detail-section .product-main .spec .spec-table.span-style table tr.hover td {
  background-color: #BCD2E9;
}
.product-detail-section .product-main .spec .spec-table.span-style table tr:hover {
  background-color: transparent;
}

/* ✅ 淡出動畫（PhotoSwipe 自動控制 visibility） */
.pswp__hide-on-close {
  transition: opacity 0.3s ease;
}

/* ====== Caption 置底樣式 ====== */
.pswp__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 20px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 30;
}
@media screen and (max-width: 576px) {
  .pswp__caption {
    bottom: calc(50% - 129.3333333333px);
    background: rgba(0, 0, 0, 0);
  }
}

.pswp__caption .caption-text {
  max-width: 90%;
  margin: 0 auto;
  word-wrap: break-word;
}

.catalog main {
  background-size: 100% auto;
}
.catalog main .catalog-section .section {
  padding-top: 110px;
  padding-bottom: 120px;
}
.catalog main .catalog-section .section .card {
  border: none;
  margin-bottom: 7.55rem;
  background: none;
}
.catalog main .catalog-section .section .card .card-title {
  font-size: 1.25rem;
  font-weight: bolder;
}
.catalog main .catalog-section .section .card .card-img {
  border: #cccccc 1px solid;
}
.catalog main .catalog-section .section .card .card-body {
  display: flex;
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 0;
  column-gap: 1rem;
}
.catalog main .catalog-section .section .card .card-body .review,
.catalog main .catalog-section .section .card .card-body .download {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}
.catalog main .catalog-section .section .card .card-body .review:hover .icon-review,
.catalog main .catalog-section .section .card .card-body .review:hover .icon-download,
.catalog main .catalog-section .section .card .card-body .download:hover .icon-review,
.catalog main .catalog-section .section .card .card-body .download:hover .icon-download {
  background-color: #2169B6;
}
.catalog main .catalog-section .section .card .card-body .icon-review,
.catalog main .catalog-section .section .card .card-body .icon-download {
  background-color: #2169B6;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.catalog main .catalog-section .section .card .card-body .icon-review {
  width: 24px;
  height: 16px;
  background-color: #333;
  -webkit-mask: url("../../assets/img/img_review.svg") no-repeat center;
  mask: url("../../assets/img/img_review.svg") no-repeat center;
}
.catalog main .catalog-section .section .card .card-body .icon-download {
  width: 19px;
  height: 16px;
  -webkit-mask: url("../../assets/img/img_download.svg") no-repeat center;
  mask: url("../../assets/img/img_download.svg") no-repeat center;
}
@media screen and (max-width: 992px) {
  .catalog main .catalog-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.news .news-section {
  overflow: hidden;
  margin-top: 110px;
  margin-bottom: 120px;
}
.news .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 6.25%;
}
@media screen and (max-width: 992px) {
  .news .news-list {
    gap: 5rem 5rem;
  }
}
.news .news-list .news-card {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border: none;
  height: auto;
}
@media screen and (max-width: 992px) {
  .news .news-list .news-card {
    flex: 1 1 300px;
  }
}
.news .news-list .news-card .news-photo {
  overflow: hidden;
  width: 236px;
}
@media screen and (max-width: 992px) {
  .news .news-list .news-card .news-photo {
    width: 100%;
  }
}
.news .news-list .news-card .news-card-body {
  padding-top: 0.5rem;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news .news-list .news-card .news-card-body .data span {
  position: relative;
}
.news .news-list .news-card .news-card-body .data span::before {
  content: "";
  background: #2169B6;
  width: 100%;
  height: 2px;
  position: absolute;
  top: -0.5rem;
}
.news .news-list .news-card .news-card-body .data, .news .news-list .news-card .news-card-body p {
  color: #666666;
  font-size: 0.85rem;
}
.news .news-list .news-card .news-card-body p {
  margin-bottom: 0;
}
.news .news-list .news-card .news-card-body .title {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.news .news-list .news-card .news-card-body .readmore {
  display: flex;
  justify-self: flex-end;
  align-self: flex-end;
  font-size: 0.85rem;
  margin-right: -0.85rem;
}
.news .news-list .news-card .news-card-body .readmore span {
  opacity: 0;
  margin-left: 0;
}
.news .news-list .news-card:hover .news-photo img {
  transform: scale(1.1);
}
.news .news-list .news-card:hover .news-card-body .data, .news .news-list .news-card:hover .news-card-body p {
  color: #666666;
}
.news .news-list .news-card:hover .news-card-body .readmore {
  margin-right: 0rem;
}
.news .news-list .news-card:hover .news-card-body .readmore span {
  opacity: 1;
  margin-left: 0.5rem;
}
.news .news-detail-section {
  margin-top: 110px;
  margin-bottom: 60px;
}
.news .news-detail-section h1 {
  margin-bottom: 2rem;
}
.news .news-detail-section .news-content {
  margin-top: 60px;
  margin-bottom: 60px;
  min-height: 20dvh;
}
.news .news-detail-section .news-content p {
  font-size: 1.25rem;
}
@media screen and (max-width: 992px) {
  .news .news-detail-section .news-content p {
    font-size: 1rem;
  }
}
.news .btn-outline-secondary:hover {
  background-color: #2169B6;
}
@media screen and (max-width: 992px) {
  .news main {
    padding: 0 1rem;
  }
}

.faq-section {
  margin-bottom: 120px;
}
.faq-section .pageshow {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 100px;
}
.faq-section .pageshow form {
  display: flex;
  align-items: center;
}
.faq-section .pageshow form .form-label {
  min-width: 300px;
  text-align: right;
  margin-bottom: 0;
}
.faq-section .pageshow form .form-select {
  min-width: 70px;
}
.faq-section .faq-list {
  width: 100%;
}
.faq-section .faq-list .faq-card {
  display: block;
  padding: 2rem;
  margin-bottom: 60px;
  border-bottom: #eeeeee 1px solid;
  background-color: rgba(238, 238, 238, 0.3);
  border-radius: 1rem;
}
.faq-section .faq-list .faq-card .faq-card-body {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.faq-section .faq-list .faq-card .faq-card-body .faq-card-content {
  width: 100%;
}
.faq-section .faq-list .faq-card .faq-card-body .data {
  margin-bottom: 0.5rem;
}
.faq-section .faq-list .faq-card .faq-card-body .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.faq-section .faq-list .faq-card .faq-card-body .readmore {
  min-width: 100px;
  display: flex;
  justify-self: flex-end;
  align-self: flex-end;
  justify-content: end;
  font-size: 0.85rem;
  overflow: hidden;
}
.faq-section .faq-list .faq-card .faq-card-body .readmore span {
  opacity: 0;
  margin-left: 0;
}
.faq-section .faq-list .faq-card:hover {
  background-color: rgba(33, 105, 182, 0.1);
  border-bottom: transparent;
  border-radius: 1rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.faq-section .faq-list .faq-card:hover .faq-photo img {
  transform: scale(1.1);
}
.faq-section .faq-list .faq-card:hover .faq-card-body .data, .faq-section .faq-list .faq-card:hover .faq-card-body p {
  color: #666666;
}
.faq-section .faq-list .faq-card:hover .faq-card-body .readmore {
  margin-right: 0rem;
}
.faq-section .faq-list .faq-card:hover .faq-card-body .readmore span {
  opacity: 1;
  margin-left: 0.5rem;
}
.faq-section .faq-pagination {
  margin-top: 60px;
}
.faq-section .faq-pagination .active > .page-link {
  color: white;
  background-color: #2169B6;
}
.faq-section .faq-pagination .active > .page-link:hover {
  color: white;
  background-color: #2169B6;
}
.faq-section .faq-pagination .page-link {
  border: none;
  border-radius: 0;
  color: #666666;
}
.faq-section .faq-pagination .page-link:hover {
  background-color: rgba(33, 105, 182, 0.3);
}
.faq-section .form-select:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: inherit !important;
}

.faq-detail-section {
  margin-top: 40px;
  margin-bottom: 120px;
}
.faq-detail-section .back-block {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 80px;
}
.faq-detail-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2169B6;
}
@media (max-width: 992px) {
  .faq-detail-section h1 {
    font-size: 2rem;
  }
}
.faq-detail-section .faq-content {
  margin-top: 80px;
  margin-bottom: 30dvh;
  padding: 2rem 4rem;
  border: #dddddd 1px solid;
  border-radius: 1rem;
}
.faq-detail-section .faq-content p {
  font-size: 1.25rem;
  line-height: 2.75rem;
  margin-bottom: 0;
}
.faq-detail-section .faq-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .contact .breadcrumb {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.contact main {
  overflow: hidden;
}
.contact main .contact-section .section {
  padding-top: 68px;
  padding-bottom: 90px;
}
.contact main .contact-section .section .info-block {
  padding-top: 42px;
  padding-bottom: 1rem;
}
.contact main .contact-section .section .info-block h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.contact main .contact-section .section .info-block p {
  margin-bottom: 1.5rem;
}
.contact main .contact-section .section .list-block {
  padding-left: 6rem;
}
.contact main .contact-section .section ul {
  border-radius: 1rem;
  padding: 42px 42px 12px 42px;
  background-color: white;
}
.contact main .contact-section .section ul .list-title {
  text-align: center;
  font-size: 1rem;
  color: #2169B6;
  margin-bottom: 30px;
}
.contact main .contact-section .section ul .list-hit {
  text-align: right;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .contact main .contact-section .section ul .list-hit {
    text-align: left;
  }
}
.contact main .contact-section .section ul li {
  margin-bottom: 30px;
  column-gap: 1rem;
}
.contact main .contact-section .section ul li .input-wrapper {
  position: relative;
  width: 100%;
}
.contact main .contact-section .section ul li .input-wrapper .form-control {
  border-color: #848484;
}
.contact main .contact-section .section ul li .input-wrapper .form-control::placeholder {
  color: transparent; /* 隱藏原生 placeholder */
}
.contact main .contact-section .section ul li .input-wrapper .custom-placeholder {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
  pointer-events: none;
}
.contact main .contact-section .section ul li .input-wrapper .custom-placeholder.textarea {
  top: 17.5%;
}
.contact main .contact-section .section ul li .input-wrapper .custom-placeholder .text-danger {
  font-weight: bold;
  margin-right: 4px;
}
.contact main .contact-section .section ul li .input-wrapper .form-control:focus + .custom-placeholder,
.contact main .contact-section .section ul li .input-wrapper .form-control:not(:placeholder-shown) + .custom-placeholder {
  display: none;
}
.contact main .contact-section .section ul li .input-wrapper .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #2169B6;
}
.contact main .contact-section .section ul li .btn {
  border: #2169B6 1px solid;
  border-radius: 2rem;
  color: #2169B6;
  width: 100%;
  max-width: 300px;
}
.contact main .contact-section .section ul li .btn:hover {
  background-color: #2169B6;
  color: white;
}
.contact main .contact-section .section .company-info ul {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.contact main .contact-section .section .company-info ul li {
  display: flex;
  column-gap: 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact main .contact-section .section .company-info ul li .iconblock {
  border-radius: 0.3rem;
  height: 30px;
}
.contact main .contact-section .section .company-info ul li a:hover .icon-phone,
.contact main .contact-section .section .company-info ul li a:hover .icon-fax,
.contact main .contact-section .section .company-info ul li a:hover .icon-address,
.contact main .contact-section .section .company-info ul li a:hover .icon-email,
.contact main .contact-section .section .company-info ul li a:hover .icon-code,
.contact main .contact-section .section .company-info ul li a:hover .icon-chat {
  background-color: #2169B6;
}
.contact main .contact-section .section .company-info ul li .icon-phone,
.contact main .contact-section .section .company-info ul li .icon-fax,
.contact main .contact-section .section .company-info ul li .icon-address,
.contact main .contact-section .section .company-info ul li .icon-email,
.contact main .contact-section .section .company-info ul li .icon-code,
.contact main .contact-section .section .company-info ul li .icon-chat {
  width: 30px;
  height: 30px;
  background-color: #666666;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.contact main .contact-section .section .company-info ul li > div, .contact main .contact-section .section .company-info ul li > a {
  display: flex;
  column-gap: 0.25rem;
  align-items: center;
}
.contact main .contact-section .section .company-info ul li .icon-phone {
  -webkit-mask: url("../../assets/img/img_icon_phone.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_phone.svg") no-repeat center;
}
.contact main .contact-section .section .company-info ul li .icon-fax {
  -webkit-mask: url("../../assets/img/img_icon_fax.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_fax.svg") no-repeat center;
}
.contact main .contact-section .section .company-info ul li .icon-address {
  -webkit-mask: url("../../assets/img/img_icon_address.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_address.svg") no-repeat center;
}
.contact main .contact-section .section .company-info ul li .icon-email {
  -webkit-mask: url("../../assets/img/img_icon_email.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_email.svg") no-repeat center;
}
.contact main .contact-section .section .company-info ul li .icon-code {
  -webkit-mask: url("../../assets/img/img_icon_code.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_code.svg") no-repeat center;
}
.contact main .contact-section .section .company-info ul li .icon-chat {
  -webkit-mask: url("../../assets/img/img_icon_chat.svg") no-repeat center;
  mask: url("../../assets/img/img_icon_chat.svg") no-repeat center;
}
@media screen and (max-width: 992px) {
  .contact main .contact-section .section .list-block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .contact main .contact-section .section ul .list-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .contact main .contact-section .section .info-block {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .contact main .contact-section .section .map iframe {
    height: 200px;
  }
  .contact main .contact-section .section ul {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.contact main .contact-section .map iframe {
  vertical-align: middle; /* 或 top, bottom */
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 1400px) {
  .contact main {
    background-position: left;
    background-size: auto 100%;
  }
}

.morebtn {
  display: block;
  border: #2169B6 1px solid;
  border-radius: 0.5rem;
  background-color: #2169B6;
  width: 200px;
  height: 58px;
  padding: 0;
  color: #2169B6;
  cursor: pointer;
}
.morebtn .inner-block {
  border: #2169B6 1px solid;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  width: 140px;
  height: 100%;
  padding: 0 1rem;
  background-color: white;
}
.morebtn:hover {
  color: #F4DF31;
}
.morebtn:hover .inner-block {
  min-width: 100%;
  background-color: #2169B6;
}
.morebtn.sp {
  display: none;
}

@media screen and (max-width: 992px) {
  .morebtn.sp {
    display: block;
  }
}
.content-title {
  position: relative;
  color: #2169B6;
  font-size: 2.5rem;
  font-weight: bolder;
}
.content-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -40px;
  width: 80px;
  height: 1px;
  background-color: #cccccc;
}

.pageheader {
  margin-top: 166px;
  height: 234px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: linear-gradient(0deg, rgba(10, 21, 41, 0.6), rgba(10, 21, 41, 0.6)), url("../../assets/img/banner/img_pageheader.webp");
  background-blend-mode: hard-light, normal;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.pageheader h1 {
  position: relative;
  font-size: 2.25rem;
}
.pageheader h1::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background-color: white;
}

@media (max-width: 1024px) {
  .home main {
    margin-top: 0;
  }
  .pageheader {
    margin-top: 73px;
  }
}
@media (max-width: 576px) {
  .pageheader {
    margin-top: 69px;
    height: 160px;
  }
}
@media (max-width: 375px) {
  .logo {
    display: flex;
    align-items: center;
  }
}
.breadcrumb {
  background-color: transparent;
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "-";
  margin: 0 0.1rem;
  color: #999;
  font-size: 1rem;
}
.breadcrumb .active {
  color: #2169B6;
  font-weight: bolder;
  position: relative;
}

.btn-outline-secondary {
  border-radius: 50px;
  padding: 0.375rem 1.5rem;
}

.search-section {
  overflow: hidden;
  min-height: 50vh;
}
.search-section .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.search-section .centent {
  padding-top: 60px;
}

.error-section {
  margin-top: 95px;
  overflow: hidden;
}
.error-section .centent {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-section .centent .information {
  text-align: center;
}
.error-section .centent .information .display-404 {
  font-size: 10rem;
  color: #2169B6;
}
.error-section .centent .information p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: bolder;
  color: #999;
}
.error-section .centent .information .btn-primary {
  background-color: #2169B6;
}
.error-section .centent .information .btn-primary:hover {
  color: #F4DF31;
}

.maintenance-section {
  background: url(../../assets/img/img-maintenance.png) center top no-repeat;
  margin-top: 5rem;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.maintenance-section .information {
  text-align: center;
}
.maintenance-section .information h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */