@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
menu,
nav,
main,
aside,
article,
p,
a,
ul,
ol,
li,
table,
tr,
td,
th,
input,
button,
form,
img,
div,
span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  list-style: none;
  text-decoration: none;
  font-family: "Noto Sans TC", "Times New Roman", "微軟正黑體";
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  /* 標準屬性 */
  -webkit-text-size-adjust: 100%;
  /* Safari/Chrome */
  -moz-text-size-adjust: 100%;
  /* Firefox Android */
  -ms-text-size-adjust: 100%;
  /* 舊 IE/Edge */
}

html,
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  /* iOS、Android 禁止自動字體縮放 */
}

.blank {
  min-height: 100vh;
  /* 滿版高度 */
  display: flex;
  flex-direction: column;
}

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

main,
section {
  width: 100%;
  flex: 1;
  /* 撐開內容區 */
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
  /* 防止文字超出 */
  line-break: loose;
  /* 調整中文標點換行規則（modern瀏覽器） */
  margin: 0;
}

li {
  font-size: 14px;
}

a.line {
  text-decoration: underline;
  font-weight: 700;
}

a {
  text-decoration: none;
  font-weight: normal;
  color: inherit;
}

a.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

a:hover {
  color: #303c64;
}

:root {
  --color1: #8f794d;
  --color2: #b1a182;
  --color3: #8f7653;
  --color4: #593105;
  --color5: #c0a36f;
  --color6: #967744;
  --color7: #e1e1e1;
}

.title-center {
  margin: 20px auto;
  text-align: center;
}
.title-center img {
  width: auto;
  align-items: center;
  margin-bottom: 10px;
  max-height: 30px;
}
.title-center h6 {
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
  color: #465157;
}
.title-center h4 {
  font-size: 20px;
  color: #ff722b;
  font-weight: 900;
  margin-bottom: 8px;
}
.title-center h4 span {
  color: #303c64;
}
.title-center p {
  color: #000;
  font-family: serif;
  letter-spacing: 1px;
  font-size: 15px;
}

.link-btn {
  width: 10em;
  height: auto;
  font-size: 14px;
  display: flex;
  padding: 15px 0;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1.5;
  cursor: pointer;
  color: #324158;
  border: 1px solid #000;
}
.link-btn img {
  width: auto;
  height: 20px;
}
.link-btn i {
  padding-left: 15px;
  line-height: 1.5;
}

.link-btn:hover {
  color: #fff;
  background-color: #324158;
}

.link-btn-icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  padding: 10px 0;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-family: serif;
  letter-spacing: 2px;
}
.link-btn-icon .arrow {
  margin-top: -20px;
  transition: transform 0.8s ease;
  height: 15px;
}
.link-btn-icon .arrow img {
  width: 90px;
  height: auto;
}

.link-btn-icon:hover {
  color: #fff;
}

.link-btn-icon:hover .arrow {
  transform: translateX(15px); /* 向右移動 10px */
}

.link-btn-left {
  text-align: left;
  justify-content: start;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 30px auto;
  text-align: center;
  padding: 20px 0;
}
.pagination ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.pagination ul li {
  display: inline;
}
.pagination ul a {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 10%;
  color: #303030;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.5;
}
.pagination ul a.active {
  background-color: #8f794d;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #8f794d;
  color: #fff;
  font-weight: 700;
}

.topBox {
  background-image: url(../images/process-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  align-items: start;
  padding: 15px 15px;
  row-gap: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}
.topBox .textBox {
  padding: 15px;
  position: relative;
  z-index: 1;
  border-left: 7px solid #8f794d;
}
.topBox h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-right: 0.75rem;
  font-size: 20px;
}
.topBox section {
  flex: none;
  padding: 0;
}

.container {
  margin: 0;
}
.container nav {
  text-align: center;
}
.container nav .breadcrumb {
  justify-content: start;
  margin: 0;
  color: #e1e1e1;
}
.container nav .breadcrumb .breadcrumb-item a {
  display: inline-block;
  font-size: 14px;
}
.container nav .breadcrumb .breadcrumb-item.active a {
  color: #e1e1e1;
}
.container nav .breadcrumb-item + .breadcrumb-item::before {
  content: "";
}

.breadcrumbRight {
  padding: 0 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #00a3ad;
}
.breadcrumbRight .breadcrumb {
  margin: 0;
  text-align: end;
}

hr {
  opacity: 1;
  border: 1px solid #000;
}

.articlecontent {
  margin: 0 auto;
  padding: 10px 20px 35px;
  max-width: 900px;
}
.articlecontent img {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.articlecontent iframe {
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 992px) {
  .articlecontent {
    padding: 20px 10px;
  }
  .articlecontent img {
    max-width: 1000px !important;
    max-height: 100% !important;
  }
  .articlecontent iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: 800px !important;
  }
}
@media only screen and (max-width: 360px) {
  body {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 361px) {
  body {
    padding-top: 58px;
  }
}
@media only screen and (max-width: 576px) {
  .grid-sm-1 {
    width: 8.3333333333%;
  }
  .grid-sm-2 {
    width: 16.6666666667%;
  }
  .grid-sm-3 {
    width: 25%;
  }
  .grid-sm-4 {
    width: 33.3333333333%;
  }
  .grid-sm-5 {
    width: 41.6666666667%;
  }
  .grid-sm-6 {
    width: 50%;
  }
  .grid-sm-7 {
    width: 58.3333333333%;
  }
  .grid-sm-8 {
    width: 66.6666666667%;
  }
  .grid-sm-9 {
    width: 75%;
  }
  .grid-sm-10 {
    width: 83.3333333333%;
  }
  .grid-sm-11 {
    width: 91.6666666667%;
  }
  .grid-sm-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-1 {
    width: 8.3333333333%;
  }
  .grid-2 {
    width: 16.6666666667%;
  }
  .grid-3 {
    width: 25%;
  }
  .grid-4 {
    width: 33.3333333333%;
  }
  .grid-5 {
    width: 41.6666666667%;
  }
  .grid-6 {
    width: 50%;
  }
  .grid-7 {
    width: 58.3333333333%;
  }
  .grid-8 {
    width: 66.6666666667%;
  }
  .grid-9 {
    width: 75%;
  }
  .grid-10 {
    width: 83.3333333333%;
  }
  .grid-11 {
    width: 91.6666666667%;
  }
  .grid-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .grid-md-1 {
    width: 8.3333333333%;
  }
  .grid-md-2 {
    width: 16.6666666667%;
  }
  .grid-md-3 {
    width: 25%;
  }
  .grid-md-4 {
    width: 33.3333333333%;
  }
  .grid-md-5 {
    width: 41.6666666667%;
  }
  .grid-md-6 {
    width: 50%;
  }
  .grid-md-7 {
    width: 58.3333333333%;
  }
  .grid-md-8 {
    width: 66.6666666667%;
  }
  .grid-md-9 {
    width: 75%;
  }
  .grid-md-10 {
    width: 83.3333333333%;
  }
  .grid-md-11 {
    width: 91.6666666667%;
  }
  .grid-md-12 {
    width: 100%;
  }
  .title img {
    max-height: 40px;
  }
  .title-center img {
    max-height: 35px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    padding-bottom: 25px;
  }
  .topBox .textBox {
    padding: 20px;
    margin-left: 10%;
  }
  body {
    padding-top: 51px;
  }
}
@media only screen and (min-width: 992px) {
  .grid-lg-1 {
    width: 8.3333333333%;
  }
  .grid-lg-2 {
    width: 16.6666666667%;
  }
  .grid-lg-3 {
    width: 25%;
  }
  .grid-lg-4 {
    width: 33.3333333333%;
  }
  .grid-lg-5 {
    width: 41.6666666667%;
  }
  .grid-lg-6 {
    width: 50%;
  }
  .grid-lg-7 {
    width: 58.3333333333%;
  }
  .grid-lg-8 {
    width: 66.6666666667%;
  }
  .grid-lg-9 {
    width: 75%;
  }
  .grid-lg-10 {
    width: 83.3333333333%;
  }
  .grid-lg-11 {
    width: 91.6666666667%;
  }
  .grid-lg-12 {
    width: 100%;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  li {
    font-size: 16px;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  .breadcrumbRight .breadcrumb {
    padding-left: 0;
  }
  .link-btn {
    font-size: 18px;
  }
  .topBox {
    height: 250px;
    padding-bottom: 40px;
  }
  .topBox .textBox {
    padding: 30px 40px;
    margin-left: 15%;
  }
  .topBox h3 {
    font-size: 30px;
  }
  body {
    padding-top: 64px;
  }
  .title-center h3 {
    font-size: 45px;
  }
  .title-center h6 {
    font-size: 18px;
  }
  .title-center h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .title h6 {
    font-size: 18px;
  }
  .title h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1400px) {
  .grid-xl-1 {
    width: 8.3333333333%;
  }
  .grid-xl-2 {
    width: 16.6666666667%;
  }
  .grid-xl-3 {
    width: 25%;
  }
  .grid-xl-4 {
    width: 33.3333333333%;
  }
  .grid-xl-5 {
    width: 41.6666666667%;
  }
  .grid-xl-6 {
    width: 50%;
  }
  .grid-xl-7 {
    width: 58.3333333333%;
  }
  .grid-xl-8 {
    width: 66.6666666667%;
  }
  .grid-xl-9 {
    width: 75%;
  }
  .grid-xl-10 {
    width: 83.3333333333%;
  }
  .grid-xl-11 {
    width: 91.6666666667%;
  }
  .grid-xl-12 {
    width: 100%;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  .topBox {
    height: 300px;
  }
  .topBox .textBox {
    max-width: 800px;
    margin-left: 21%;
  }
}
@media only screen and (min-width: 1700px) {
  .topBox {
    background-position: 100% 30%;
  }
}
@media only screen and (min-width: 1900px) {
  .grid-xxl-1 {
    width: 8.3333333333%;
  }
  .grid-xxl-2 {
    width: 16.6666666667%;
  }
  .grid-xxl-3 {
    width: 25%;
  }
  .grid-xxl-4 {
    width: 33.3333333333%;
  }
  .grid-xxl-5 {
    width: 41.6666666667%;
  }
  .grid-xxl-6 {
    width: 50%;
  }
  .grid-xxl-7 {
    width: 58.3333333333%;
  }
  .grid-xxl-8 {
    width: 66.6666666667%;
  }
  .grid-xxl-9 {
    width: 75%;
  }
  .grid-xxl-10 {
    width: 83.3333333333%;
  }
  .grid-xxl-11 {
    width: 91.6666666667%;
  }
  .grid-xxl-12 {
    width: 100%;
  }
}
div.carouselSlide .carousel-indicators {
  margin-bottom: 0;
}
div.carouselSlide .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
div.carouselSlide .carousel-item {
  position: relative;
}
div.carouselSlide .carousel-item .carousel-text {
  position: absolute;
  bottom: 10%;
  /* 讓文字區塊位於圖片的下方 */
  left: 50%;
  transform: translateX(-50%);
  /* 水平置中 */
  text-align: center;
  color: #fff;
  width: 83%;
  /* 調整寬度 */
  border: 2px solid white;
  padding: 10px 5px;
  background-color: rgba(247, 247, 247, 0.2392156863);
  animation: zoomIn 2s ease-out;
}
div.carouselSlide .carousel-item .carousel-text .main-text {
  font-size: 19px;
  /* 大字 */
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #000;
}
div.carouselSlide .carousel-item .carousel-text .sub-text {
  font-size: 14px;
  /* 小字 */
  margin: 5px 0;
  text-shadow: 0 0 5px #000;
}
div.carouselSlide .carousel-item .carousel-text .carousel-text p {
  margin: 0;
  /* 去除段落的間距 */
}
@keyframes zoomIn {
  0% {
    transform: translateX(-50%) scale(0);
    /* 開始時縮小 */
    opacity: 0;
    /* 開始時透明 */
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    /* 放大至最大 */
    opacity: 0.7;
    /* 半透明 */
  }
  100% {
    transform: translateX(-50%) scale(1);
    /* 恢復正常大小 */
    opacity: 1;
    /* 完全顯示 */
  }
}
div.carouselSlide .carousel-control-prev {
  justify-content: start;
}
div.carouselSlide .carousel-control-next {
  justify-content: end;
}
div.carouselSlide .carousel-control-prev-icon,
div.carouselSlide .carousel-control-next-icon {
  background-color: #fff;
  color: #454545;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  border: 1px solid #1e242e;
  transition: color 0.3s ease, background-color 0.3s ease;
}
div.carouselSlide .carousel-control-prev-icon:hover,
div.carouselSlide .carousel-control-next-icon:hover {
  background-color: #000;
  color: #fff;
}

main .aboutSec {
  padding: 30px 10px;
  background-color: #f3f3f3;
  position: relative;
  z-index: 2;
}
main .aboutSec .contentBox {
  margin: 0 auto 20px;
  max-width: 350px;
  position: relative;
  z-index: 3;
  padding-right: 15px;
}
main .aboutSec .contentBox .title {
  padding-bottom: 20px;
}
main .aboutSec .contentBox .title p {
  padding: 0;
}
main .aboutSec .contentBox .title h3 {
  padding-top: 5px;
  color: #8c794d;
  font-weight: 700;
}
main .aboutSec .contentBox h6 {
  font-weight: normal;
}
main .aboutSec .contentBox p {
  padding-bottom: 5px;
  line-height: 1.4;
}
main .aboutSec .contentBox ul {
  margin: 20px 0;
}
main .aboutSec .contentBox ul li {
  color: #8c794d;
  padding-bottom: 5px;
  line-height: 1.4;
}
main .aboutSec .contentBox ul li::before {
  content: "\f270";
  font-family: "bootstrap-icons";
  font-size: 14px;
  color: #8c794d;
  margin-right: 5px;
}
main .aboutSec .contentBox ul ~ p {
  line-height: 1.6;
}
main .aboutSec .picBox {
  margin: 10px auto;
  text-align: center;
  position: relative;
  z-index: 3;
}
main .aboutSec .picBox img {
  max-width: 400px;
}
main .aboutSec .bgBox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
main .serviceSec {
  padding: 30px 0;
  background-image: url(../images/service-bg.jpg);
  background-size: cover;
  background-position: left;
}
main .serviceSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  row-gap: 20px;
}
main .serviceSec .rowBox .contentBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
main .serviceSec .rowBox .contentBox .pic {
  flex: 1;
  text-align: center;
}
main .serviceSec .rowBox .contentBox .pic img {
  width: 80%;
}
main .serviceSec .rowBox .contentBox .textBox {
  flex: 2;
  padding-right: 12px;
}
main .serviceSec .rowBox .contentBox .textBox h6 {
  color: #8f794d;
  margin-bottom: 10px;
  font-weight: 500;
}
main .processSec {
  background-image: url(../images/process-bg.jpg);
  background-repeat: no-repeat;
  background-position: 30% center;
  padding: 50px 15px;
}
main .processSec .rowBox .textBox {
  max-width: 450px;
}
main .processSec .rowBox .textBox p {
  color: #fff;
  padding-left: 5px;
}
main .processSec .rowBox .textBox h3 {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 60px;
  background: linear-gradient(to right, #fbffff 0%, rgba(251, 255, 255, 0.5137254902) 100%);
  background: -webkit-linear-gradient(to right, #fbffff 0%, rgba(251, 255, 255, 0.5137254902) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  mix-blend-mode: soft-light;
  padding-bottom: 30px;
  will-change: transform;
}
main .processSec .rowBox .textBox ul {
  padding-right: 20px;
}
main .processSec .rowBox .textBox ul li {
  color: #fff;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
main .processSec .rowBox .textBox ul li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-image: url(../images/process-icon1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1.5;
}
main .processSec .rowBox .textBox ul li:nth-of-type(2):before {
  background-image: url(../images/process-icon2.png);
}
main .processSec .rowBox .textBox ul li:nth-of-type(3):before {
  background-image: url(../images/process-icon3.png);
}
main .processSec .rowBox .textBox ul li:nth-of-type(4):before {
  background-image: url(../images/process-icon4.png);
}
main .reviewsSec {
  padding: 50px 0;
}
main .reviewsSec .reviewsOwl {
  padding: 0 35px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 1300px;
}
main .reviewsSec .reviewsOwl .picBox {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 5px;
}
main .reviewsSec .reviewsOwl .picBox .frameBox {
  background-image: url(../images/reviews-frame.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 40px 20px;
}
main .reviewsSec .reviewsOwl .picBox .frameBox .iconBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
main .reviewsSec .reviewsOwl .picBox .frameBox .iconBox .starBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: none;
}
main .reviewsSec .reviewsOwl .picBox .frameBox .iconBox .starBox i {
  color: #b1a182;
}
main .reviewsSec .reviewsOwl .picBox .frameBox .iconBox img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
main .reviewsSec .reviewsOwl .picBox .frameBox p {
  margin: 15px 0;
  min-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
main .reviewsSec .reviewsOwl .picBox .userBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  vertical-align: middle;
  margin: 8px 0;
}
main .reviewsSec .reviewsOwl .picBox .userBox .boximg1x1 {
  width: 50px;
  height: 50px;
  padding-top: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
main .reviewsSec .reviewsOwl .picBox .userBox h6 {
  font-weight: normal;
  line-height: 1.5;
}
main .reviewsSec .reviewsOwl .picBox .userBox span {
  color: #cdaa92;
  font-weight: 600;
}
main .reviewsSec .reviewsOwl .owl-carousel {
  position: relative;
}
main .reviewsSec .reviewsOwl .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .reviewsSec .reviewsOwl .owl-nav .owl-prev,
main .reviewsSec .reviewsOwl .owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #454545;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #1e242e;
}
main .reviewsSec .reviewsOwl .owl-nav .owl-next {
  right: 0;
}
main .reviewsSec .reviewsOwl .owl-nav .owl-prev:hover,
main .reviewsSec .reviewsOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #1e242e;
}
main .contactSec {
  background-image: url(../images/contact-bg-mb.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 15% 0;
  position: relative;
}
main .contactSec .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .contactSec .rowBox .textBox h5 {
  line-height: 1.5;
  font-weight: normal;
}
main .contactSec .rowBox .textBox h5 span {
  font-weight: 900;
}
main .contactSec .rowBox .textBox h5 b {
  font-weight: 700;
}
main .contactSec .rowBox .textBox .fontsize-h5 {
  margin-top: 10px;
}
main .contactSec .rowBox .emtyBox {
  height: 400px;
}
main .contactSec .button-all {
  position: absolute;
  bottom: 4%;
  left: 0;
}
main .contactSec .button-all .button {
  padding: 15px 0;
  width: 200px;
  height: 70px;
  position: relative;
  transition: transform 0.2s ease, filter 0.2s ease;
}
main .contactSec .button-all .button .bg-trapezoid {
  position: absolute;
  width: 180px;
  height: 40px;
  background: #292121;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  top: 10px;
  left: 0;
  z-index: 1;
}
main .contactSec .button-all .button .bg-parallelogram {
  position: absolute;
  width: 225px;
  height: 50px;
  background: #c0a36f;
  background: linear-gradient(90deg, #c0a36f 0%, #593105 36%, #967744 60%, #c0a36f 76%, #5f370b 100%);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
  top: 10px;
  left: 0;
  z-index: 0;
  transition: transform 0.3s ease;
}
main .contactSec .button-all .button .btn {
  position: relative;
  display: inline-block;
  width: 200px;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  z-index: 2;
}
main .contactSec .button-all .button:hover {
  transform: translate(0, -2px);
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
main .contactSec img {
  width: 200px;
}
main .newSec {
  position: relative;
  width: 100%;
  padding: 40px 0;
  background-color: #f5f5f7;
}
main .newSec .title-center {
  margin-top: 0;
  padding: 30px 0;
  position: relative;
}
main .newSec .title-center h6 {
  position: relative;
  z-index: 1;
  color: #8f794d;
}
main .newSec .title-center h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #e1e1e1 0%, #ededed 100%);
  background: -webkit-linear-gradient(to right, #e1e1e1 0%, #ededed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  font-family: "Lexend Deca", sans-serif;
  font-size: 80px;
  z-index: 0;
}
main .newSec .newOwl {
  padding: 10px 30px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .newSec .newOwl .contentBox {
  width: 100%;
  margin: 0 auto;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .newSec .newOwl .contentBox .boximg4x5 {
  border-radius: 25px;
  border: 3px solid #8f794d;
}
main .newSec .newOwl .contentBox .boximg4x5 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .newSec .newOwl .contentBox .textBox {
  max-height: 200px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
main .newSec .newOwl .contentBox .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5;
  color: #8f794d;
  font-weight: 400;
  margin: 10px 0;
  padding: 0 5px;
}
main .newSec .newOwl .contentBox .textBox p {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .newSec .newOwl .contentBox .textBox .timeP {
  line-height: 1.8;
}
main .newSec .newOwl .contentBox .btn {
  color: #808080;
  border-radius: 0;
  padding: 0 5px;
  transition: all 0.5s ease;
}
main .newSec .newOwl .contentBox:hover .boximg4x5::after,
main .newSec .newOwl .contentBox:focus-within .boximg4x5::after {
  opacity: 1;
}
main .newSec .newOwl .contentBox:hover .boximg4x5::before,
main .newSec .newOwl .contentBox:focus-within .boximg4x5::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .newSec .newOwl .contentBox:hover .boximg4x5 img,
main .newSec .newOwl .contentBox:focus-within .boximg4x5 img {
  filter: brightness(0.85);
}
main .newSec .newOwl .contentBox:hover .boximg4x5 img,
main .newSec .newOwl .contentBox:focus-within .boximg4x5 img {
  transform: translate(-50%, -50%) scale(1.1);
  /* 注意：合併在一起 */
}
main .newSec .newOwl .contentBox:hover .btn {
  background-color: transparent;
  color: #8f794d;
  font-weight: 700;
}
main .newSec .newOwl .owl-carousel {
  position: relative;
  overflow: visible;
}
main .newSec .newOwl .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .newSec .newOwl .owl-nav .owl-prev,
main .newSec .newOwl .owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #454545;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #1e242e;
}
main .newSec .newOwl .owl-nav .owl-next {
  right: 0;
}
main .newSec .newOwl .owl-nav .owl-prev:hover,
main .newSec .newOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #1e242e;
}
main .newSec .newOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .newSec .newOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .newSec .newOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .newSec .newOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .newSec .newOwl .owl-dots .owl-dot.active span {
  background: #333;
}

.contactBottom {
  padding: 40px 0 0;
  background-color: #e1e1e1;
}
.contactBottom .contactBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding: 20px 0 30px;
}
.contactBottom .contactBox .contLeft {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  text-align: center;
  max-width: 350px;
}
.contactBottom .contactBox .contLeft img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
}
.contactBottom .contactBox .contLeft p {
  color: #8f794d;
}
.contactBottom .contactBox .contCenter,
.contactBottom .contactBox .contRight {
  max-width: 300px;
}
.contactBottom .contactBox .contCenter h5,
.contactBottom .contactBox .contRight h5 {
  color: #8f794d;
  font-weight: 800;
  font-size: 28px;
  font-family: "Arial Black", sans-serif;
  margin-bottom: 8px;
}
.contactBottom .contactBox .contCenter p,
.contactBottom .contactBox .contRight p {
  line-height: 2;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}
.contactBottom .contactBox .contCenter p a,
.contactBottom .contactBox .contRight p a {
  font-family: "Noto Sans TC", sans-serif;
}

footer {
  line-height: 2;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background-color: #1e242e;
}

aside {
  display: flex;
  position: fixed;
  flex-direction: column;
  right: 0;
  bottom: 15px;
  text-align: center;
  align-items: center;
  overflow: hidden;
  padding: 0.5em 0;
  width: 50px;
  border-radius: 10px;
  transform: scale(0.8);
  z-index: 999;
}
aside a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin: 10px 0;
}
aside .asideBottom {
  margin-top: 5px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
aside .asideBottom a {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
aside .asideBottom.hidden {
  opacity: 0;
  pointer-events: none;
}

main .aboutPage .aboutBox {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* 文字卡片 */
}
main .aboutPage .aboutBox .about-card {
  width: 90%;
  margin: 40px auto -40px; /* 卡片往上疊 */
  background: #fff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  position: relative;
}
main .aboutPage .aboutBox .about-card h4 {
  color: #8c794d;
  margin-bottom: 6px;
  font-weight: 700;
}
main .aboutPage .aboutBox .about-card h5 {
  color: #8c794d;
  margin-bottom: 14px;
  font-weight: 700;
}
main .aboutPage .aboutBox .about-card p {
  line-height: 1.8;
  margin-bottom: 12px;
  color: #333;
}
main .aboutPage .aboutBox .about-bg {
  width: 100%;
  height: 320px;
}
main .aboutPage .aboutBox .about-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main .aboutPage .about1Box {
  padding: 30px 0;
}
main .aboutPage .about1Box .title-center h4 {
  color: #967744;
  font-weight: 700;
}
main .aboutPage .about1Box .title-center p {
  font-style: italic;
}
main .aboutPage .about1Box .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  margin: 60px auto;
}
main .aboutPage .about1Box .rowBox .cardBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.0784313725);
  max-width: 400px;
}
main .aboutPage .about1Box .rowBox .cardBox .iconBox {
  flex: 1;
  text-align: center;
}
main .aboutPage .about1Box .rowBox .cardBox .iconBox img {
  max-width: 70px;
  height: auto;
}
main .aboutPage .about1Box .rowBox .cardBox .textBox {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
main .aboutPage .about1Box .rowBox .cardBox .textBox h6 {
  color: #b1a182;
  margin-bottom: 10px;
}
main .aboutPage .about2Box {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}
main .aboutPage .about2Box .container {
  margin: 0 auto;
}
main .aboutPage .about2Box .timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
main .aboutPage .about2Box .timeline .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin: 50px 0;
  padding-left: 30px;
  position: relative;
  width: 100%;
}
main .aboutPage .about2Box .timeline .timeline-item .content {
  order: 0;
  padding: 10px 0;
  padding-right: 15px;
}
main .aboutPage .about2Box .timeline .timeline-item .content h4 {
  margin-bottom: 15px;
  color: #8c794d;
}
main .aboutPage .about2Box .timeline .timeline-item .content p {
  line-height: 1.6;
  color: #555;
}
main .aboutPage .about2Box .timeline .timeline-item.right {
  flex-direction: column-reverse;
}
main .aboutPage .about2Box .timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 20px;
  border: 5px solid #8f7653;
  background-color: #f3f3f3;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
main .aboutPage .about2Box .timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 4px;
  background-color: #8f7653; /* 時間軸顏色，可調 */
  transform: translateX(-50%);
}
main .aboutPage .about3Box .rowBox .textBox {
  text-align: center;
  padding: 40px 20px;
}
main .aboutPage .about3Box .rowBox .textBox h5 {
  color: #8c794d;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
main .aboutPage .about3Box .rowBox .textBox p {
  line-height: 2;
  margin-bottom: 8px;
}
main .aboutPage .about3Box .rowBox .textBox .signBox {
  margin: 30px auto;
  color: #292121;
  padding: 20px 10%;
  text-align: left;
  max-width: 500px;
  box-shadow: 10px 10px 20px #e1e1e1;
}
main .aboutPage .about3Box .rowBox .textBox .signBox h5 {
  color: #593105;
  line-height: 1.7;
  margin-bottom: 10px;
}

main .sevicePage .contentBox {
  padding: 30px 0;
}
main .sevicePage .contentBox .directionBox {
  margin: 30px auto;
  border-radius: 20px;
  padding: 20px;
  background-color: #f5f5f7;
}
main .sevicePage .contentBox .directionBox p {
  margin-bottom: 8px;
}

main .newPage .contentBox {
  padding: 20px 0;
}
main .newPage .contentBox .rowBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 2em auto;
  margin-bottom: 0;
  row-gap: 20px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .newPage .contentBox .rowBox .content {
  padding: 12px 12px 0;
  transition: box-shadow 0.35s ease;
}
main .newPage .contentBox .rowBox .content .boximg4x5 {
  border-radius: 25px;
  border: 3px solid #8f794d;
}
main .newPage .contentBox .rowBox .content .boximg4x5 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .newPage .contentBox .rowBox .content .textBox {
  margin-bottom: 15px;
}
main .newPage .contentBox .rowBox .content .textBox .timeP {
  color: #808080;
  margin-top: 6px;
}
main .newPage .contentBox .rowBox .content .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5;
  color: #8f794d;
  font-weight: 400;
  margin: 10px 0;
  padding: 0 5px;
}
main .newPage .contentBox .rowBox .content .textBox p.longtext {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #333;
}
main .newPage .contentBox .rowBox .content .btn {
  color: #808080;
  border-radius: 0;
  padding: 0 5px;
  transition: all 0.5s ease;
}
main .newPage .contentBox .rowBox .content .link-btn-icon {
  color: #454545;
  font-size: 16px;
  padding: 0;
}
main .newPage .contentBox .rowBox .content:hover .boximg4x5::after,
main .newPage .contentBox .rowBox .content:focus-within .boximg4x5::after {
  opacity: 1;
}
main .newPage .contentBox .rowBox .content:hover .boximg4x5::before,
main .newPage .contentBox .rowBox .content:focus-within .boximg4x5::before {
  opacity: 1;
  transform: none;
}
main .newPage .contentBox .rowBox .content:hover .boximg4x5 img,
main .newPage .contentBox .rowBox .content:focus-within .boximg4x5 img {
  filter: brightness(0.85);
}
main .newPage .contentBox .rowBox .content:hover .boximg4x5 img,
main .newPage .contentBox .rowBox .content:focus-within .boximg4x5 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .newPage .contentBox .rowBox .content:hover .arrow {
  transform: translateX(15px); /* 向右移動 10px */
}
main .newPage .contentBox .rowBox .content:hover .btn {
  background-color: transparent;
  color: #8f794d;
  font-weight: 700;
}
main .newPage .contentBox .rowBox a:hover {
  color: #000;
}

main .articlePage .articleBox {
  margin: 20px auto;
  padding: 40px 0;
}
main .articlePage .articleBox .photoBox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
  max-width: 900px;
  margin: 10px auto 30px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .articlePage .articleBox .photoBox .picBox {
  padding: 10px;
  position: relative;
  /* 讓遮罩能定位 */
  overflow: hidden;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .articlePage .articleBox .photoBox .picBox h6 {
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  margin: 10px 0;
}
main .articlePage .articleBox .photoBox .picBox p {
  color: #4d4d4d;
  padding: 0px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5em;
}
main .articlePage .articleBox .photoBox .picBox .boximg3x2 img, main .articlePage .articleBox .photoBox .picBox .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg3x2::after,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg3x2::after {
  opacity: 1;
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg3x2::before,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg3x2::before {
  opacity: 1;
  transform: none;
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg3x2 img,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg3x2 img {
  filter: brightness(0.85);
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg3x2 img,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg3x2 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg1x1::after,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg1x1::before,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: none;
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg1x1 img,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .articlePage .articleBox .photoBox .picBox:hover .boximg1x1 img,
main .articlePage .articleBox .photoBox .picBox:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}

main .casePage .product-container {
  margin: 0 auto;
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* 不讓子元素等高 */
}
main .casePage .product-container .product-sidebar {
  margin: 1em auto;
  padding: 10px;
  padding-left: 0;
  max-width: 600px;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
main .casePage .product-container .product-sidebar hr {
  width: 9em;
  border: 1px solid #4974a5;
  opacity: 1;
}
main .casePage .product-container .product-sidebar h6 {
  margin: 0.5em 0;
  color: #333;
  text-align: center;
  padding: 8px 15px;
}
main .casePage .product-container .product-sidebar ul li {
  line-height: 2;
  padding: 5px 10px;
  cursor: pointer;
  position: relative;
  color: #333;
  flex: 1;
  /* 占滿剩餘空間 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .casePage .product-container .product-sidebar ul li .dropdown-content {
  display: none;
}
main .casePage .product-container .product-sidebar ul li:last-child {
  border-bottom: none;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown {
  padding: 0;
  padding-bottom: 10px;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown div {
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 垂直置中 */
}
main .casePage .product-container .product-sidebar ul .aside-dropdown div a {
  color: #333;
  flex: 1;
  /* 占滿剩餘空間 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: calc(100% - 50px);
  /* 控制大約 10 字寬度，可依需求調整 */
}
main .casePage .product-container .product-sidebar ul .aside-dropdown div .toggle-btn {
  flex-shrink: 0;
  /* 不被壓縮，保持位置 */
  margin-left: 20px;
  font-size: 14px;
  vertical-align: bottom;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu {
  display: none;
  border: none;
  padding-left: 15px;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu li {
  flex: 0 0 auto;
  padding: 0 10px;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu li:last-child {
  border-bottom: none;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu a {
  font-size: 14px;
  color: #777;
  transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
}
main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu.active {
  display: block;
  display: flex;
  flex-wrap: wrap;
}
main .casePage .product-container .product-sidebar ul li.filter-btn a,
main .casePage .product-container .product-sidebar ul .aside-dropdown div > a,
main .casePage .product-container .product-sidebar ul .submenu li,
main .casePage .product-container .product-sidebar ul .submenu li a {
  color: #333;
}
main .casePage .product-container .product-sidebar ul li.filter-btn:hover,
main .casePage .product-container .product-sidebar ul li.filter-btn:hover a,
main .casePage .product-container .product-sidebar ul li.filter-btn.active a,
main .casePage .product-container .product-sidebar ul .aside-dropdown.active div > a,
main .casePage .product-container .product-sidebar ul .aside-dropdown div:hover,
main .casePage .product-container .product-sidebar ul .aside-dropdown div:hover > a,
main .casePage .product-container .product-sidebar ul .submenu li:hover,
main .casePage .product-container .product-sidebar ul .submenu li:hover > a {
  color: #8f794d;
  font-weight: 700;
}
main .casePage .product-container .product-sidebar ul li.filter-btn:hover a,
main .casePage .product-container .product-sidebar ul .submenu li:hover,
main .casePage .product-container .product-sidebar ul .submenu li:hover > a {
  transform: scale(1.01);
  letter-spacing: 1px;
}
main .casePage .product-container .product-sidebar ul li.filter-btn.active a,
main .casePage .product-container .product-sidebar ul li.filter-btn.active,
main .casePage .product-container .product-sidebar ul .aside-dropdown.active div,
main .casePage .product-container .product-sidebar ul .submenu li.active,
main .casePage .product-container .product-sidebar ul .submenu li.active a {
  font-weight: 700;
  letter-spacing: 1px;
  color: #8f794d;
}
main .casePage .product-container .product-sidebar ul .dropdown-toggle:hover ul {
  display: block;
}
main .casePage .product-container .product-sidebar ul li.dropdown-toggle::after {
  content: none;
  /* 或刪除整個這段 */
}
main .casePage .product-container .product-sidebar .filter-btn {
  color: #667e70;
}
main .casePage .product-container .row {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: flex-start;
  padding-bottom: 20px;
}
main .casePage .product-container .row .product-item {
  margin: 0;
  padding: 0 5px;
  cursor: pointer;
  height: auto !important;
}
main .casePage .product-container .row .product-item .card-p {
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 15px;
}
main .casePage .product-container .row .product-item .card-p .image-wrapper {
  margin: 15px;
}
main .casePage .product-container .row img {
  display: block;
  width: 100%;
}
main .casePage .product-container .row .card-p:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
main .casePage .product-container .row .content {
  padding: 20px 15px;
}
main .casePage .product-container .row .title {
  margin: 0;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  width: 100%;
  font-size: 16px;
  color: #292121;
  font-weight: 400;
}
main .casePage .product-container .row .card-des {
  padding: 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: #777;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 5px;
}
main .casePage .product-container .row .product-item:nth-of-type(2n) .card-des {
  padding: 0;
  padding-right: 3px;
}
main .casePage .product-container .row .more {
  color: #929292;
}
main .casePage .product-container .row .price {
  font-weight: normal;
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.5;
}
main .casePage .product-container .row .price span {
  font-size: 15px;
}
main .casePage .product-container .row .price .onSale {
  color: #f11717;
}
main .casePage .product-container .row .price:has(.onSale:not(:empty)) .default {
  text-decoration: line-through;
}

@media (max-width: 991px) {
  main .casePage .product-container .product-sidebar {
    padding: 0;
  }
  main .casePage .product-container .sidebar-toggle {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    cursor: pointer;
    flex: 1;
    font-size: 16px;
  }
  main .casePage .product-container .sidebar-menu {
    display: none;
  }
  main .casePage .product-container .sidebar-menu .aside-dropdown div a {
    font-size: 14px;
  }
  main .casePage .product-container .sidebar-menu.active {
    display: block;
  }
}
main .faqPage .qaAccordin {
  margin: 20px auto 40px;
  max-width: 1100px;
  padding: 50px 0;
}
main .faqPage .qaAccordin .qa-item {
  background-color: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}
main .faqPage .qaAccordin .qa-item .question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  padding: 30px;
  color: #292121;
  background-color: #fff;
  border-bottom: 1px solid #292121;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
main .faqPage .qaAccordin .qa-item .question .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-color: #eaeaea;
  color: #292121;
  text-align: center;
  line-height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background-color 0.3s, color 0.3s;
}
main .faqPage .qaAccordin .qa-item .question.active {
  border-bottom: none;
}
main .faqPage .qaAccordin .qa-item .question.active .icon {
  background-color: #fff;
  color: #292121;
}
main .faqPage .qaAccordin .qa-item .answer {
  display: none;
  padding: 30px;
  background-color: #ececec;
  color: #292121;
  transition: all 0.5s ease-in;
  font-size: 15px;
  border-radius: 15px;
}
main .faqPage .qaAccordin .qa-item .answer.show {
  transition: all 0.5s ease-in;
  display: block;
}

main .contactPage .contactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0 40px;
}
main .contactPage .contactBox .contentBox {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
}
main .contactPage .contactBox .contentBox .title {
  margin: 0;
}
main .contactPage .contactBox .contentBox .title h3 {
  color: #fa8c35;
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 8px;
}
main .contactPage .contactBox .contentBox .title h3 .text-arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  animation: arrowMove 1.2s infinite;
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
main .contactPage .contactBox .contentBox .title h5 {
  color: #8f7653;
  line-height: 2;
  font-weight: 700;
}
main .contactPage .contactBox .contentBox .rowBox .textBox {
  letter-spacing: 1px;
  padding: 20px;
  background-color: #f5f5f7;
  border-radius: 30px;
}
main .contactPage .contactBox .contentBox .rowBox .textBox h6 {
  padding: 10px 0;
  font-weight: 800;
  color: #8c794d;
  line-height: 2;
}
main .contactPage .contactBox .contentBox .rowBox .textBox h6 i {
  margin-right: 5px;
}
main .contactPage .contactBox .contentBox .rowBox .textBox p {
  line-height: 1.8;
  margin-bottom: 6px;
}
main .contactPage .contactBox .contentBox .rowBox .textBox p i {
  text-align: center;
  display: inline-block;
  width: 1.7em;
  color: #000;
}
main .contactPage .contactBox .contentBox .rowBox .textBox p a:has(img) {
  display: block;
}
main .contactPage .contactBox .contentBox .rowBox .textBox p img {
  margin-top: 10px;
  max-width: 200px;
}
main .contactPage .contactBox .content {
  border-radius: 10px;
  position: relative;
}
main .contactPage .contactBox .content .formBox {
  padding: 20px;
}
main .contactPage .contactBox .content .formBox h6 {
  margin: 10px 0;
  color: #8c794d;
  font-weight: 800;
}
main .contactPage .contactBox .content .formBox p {
  color: #333;
  margin-bottom: 30px;
}
main .contactPage .contactBox .content .formBox .formgroup {
  margin: 1.5rem 0;
  width: 100%;
}
main .contactPage .contactBox .content .formBox .formgroup label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
main .contactPage .contactBox .content .formBox .formgroup label .required {
  color: red;
  margin-right: 0.25rem;
}
main .contactPage .contactBox .content .formBox .formgroup select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* appearance移除 iOS 預設樣式，但箭頭會不見，所以用插入箭頭的svg */
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 320 512'%3E%3Cpath d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 306.7 54.6 201.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 14px auto;
  width: 100%;
  /* 填滿容器 */
  max-width: 100%;
  /* 不超出 */
  box-sizing: border-box;
  display: block;
  /* 避免 inline-block 受文字影響 */
}
main .contactPage .contactBox .content .formBox .formgroup select option {
  width: 100%;
}
main .contactPage .contactBox .content .formBox .formgroup input[type=text],
main .contactPage .contactBox .content .formBox .formgroup input[type=tel],
main .contactPage .contactBox .content .formBox .formgroup input[type=date],
main .contactPage .contactBox .content .formBox .formgroup textarea,
main .contactPage .contactBox .content .formBox .formgroup select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
main .contactPage .contactBox .content .formBox .formgroup input:focus,
main .contactPage .contactBox .content .formBox .formgroup textarea:focus,
main .contactPage .contactBox .content .formBox .formgroup select:focus {
  border-color: #3e6450;
  outline: none;
}
main .contactPage .contactBox .content .formBox .formgroup input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 3em;
}
main .contactPage .contactBox .content .formBox .formgroup textarea {
  resize: vertical;
}
main .contactPage .contactBox .content .formBox .formgroup .captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
main .contactPage .contactBox .content .formBox .formgroup .captcha-box .captcha-container {
  flex-shrink: 0;
  /* 防止圖片被壓縮 */
}
main .contactPage .contactBox .content .formBox .formgroup .captcha-box .captcha-container .captcha-img {
  height: 40px;
}
main .contactPage .contactBox .content .formBox .submit-btn {
  margin: 40px auto;
  padding: 0;
  border: none;
  text-align: center;
}
main .contactPage .contactBox .content .formBox .submit-btn button[type=submit] {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 10px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main .contactPage .contactBox .content .formBox .submit-btn button[type=submit]:hover {
  background-color: #b1a182;
  color: #fff;
  border: 1px solid #b1a182;
}

@media only screen and (min-width: 400px) {
  main .contactSec .contentBox .leftBox {
    height: 400px;
    background-size: 180%;
    background-position: 10% bottom;
  }
}
@media only screen and (min-width: 768px) {
  div.carouselSlide .carousel-indicators {
    margin-bottom: 20px;
  }
  div.carouselSlide .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
  div.carouselSlide .carousel-item .carousel-text {
    width: 50%;
    bottom: 15%;
  }
  div.carouselSlide .carousel-item .carousel-text .main-text {
    font-size: 24px;
  }
  div.carouselSlide .carousel-item .carousel-text .sub-text {
    font-size: 16px;
  }
  div.carouselSlide .carousel-control-prev-icon,
  div.carouselSlide .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  main .aboutSec {
    display: flex;
    justify-content: center;
    padding: 50px 0;
  }
  main .aboutSec .contentBox {
    margin: 0;
    padding-left: 20px;
    padding-bottom: 20px;
    max-width: 470px;
  }
  main .aboutSec .contentBox p {
    padding-bottom: 8px;
  }
  main .aboutSec .contentBox ul ~ p br {
    display: none;
  }
  main .aboutSec .picBox {
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
  }
  main .aboutSec .picBox img {
    max-width: 500px;
  }
  main .gallerySec .rowBox {
    display: flex;
    flex-wrap: wrap;
  }
  main .serviceSec .rowBox {
    flex-direction: row;
    padding-bottom: 40px;
  }
  main .serviceSec .rowBox .contentBox {
    flex-direction: column;
    flex: 1;
  }
  main .serviceSec .rowBox .contentBox .pic {
    padding: 10px;
  }
  main .serviceSec .rowBox .contentBox .pic img {
    width: 70%;
  }
  main .serviceSec .rowBox .contentBox .textBox {
    padding: 0 20px;
    text-align: center;
  }
  main .serviceSec .rowBox .contentBox .textBox h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  main .processSec {
    padding: 120px 15px;
  }
  main .processSec .rowBox {
    display: flex;
    flex-direction: row;
    justify-content: end;
  }
  main .processSec .rowBox .textBox h3 {
    font-size: 90px;
    padding-bottom: 40px;
  }
  main .processSec .rowBox .textBox ul li {
    padding-bottom: 15px;
    align-items: flex-end;
  }
  main .processSec .rowBox .textBox ul li::before {
    width: 22px;
    height: 22px;
  }
  main .reviewsSec .reviewsOwl .owl-nav .owl-prev,
  main .reviewsSec .reviewsOwl .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    font-size: 17px;
    line-height: 17px;
  }
  main .contactSec {
    padding: 12% 0;
    background-image: url(../images/contact-bg.jpg);
  }
  main .contactSec .rowBox {
    flex-direction: row;
    justify-content: center;
  }
  main .contactSec .rowBox .emtyBox {
    height: 200px;
  }
  main .contactSec .button-all {
    left: 5%;
    bottom: 15%;
  }
  main .newSec .newOwl {
    padding: 20px 50px;
    max-width: 1000px;
  }
  main .newSec .newOwl .picBox {
    width: 90%;
  }
  main .newSec .newOwl .owl-nav .owl-prev,
  main .newSec .newOwl .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    font-size: 17px;
    line-height: 17px;
  }
  .contactBottom .contactBox .contCenter,
  .contactBottom .contactBox .contRight {
    max-width: 330px;
  }
  footer {
    font-size: 16px;
    width: 100%;
    margin: 0 auto;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  main .aboutPage .aboutBox {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  main .aboutPage .aboutBox .about-card {
    position: absolute;
    z-index: 1;
    width: 48%;
    max-width: 620px;
    margin-left: 50%;
    margin-right: 10%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 40px;
  }
  main .aboutPage .aboutBox .about-bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  main .aboutPage .aboutBox .about-bg img {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  }
  main .aboutPage .about1Box .rowBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 兩欄 */
    gap: 20px;
    margin: 30px auto;
    padding: 30px 0 50px;
    max-width: 1000px;
  }
  main .aboutPage .about1Box .rowBox .cardBox {
    max-width: 450px;
  }
  main .aboutPage .about1Box .rowBox .cardBox .textBox {
    align-items: flex-start;
    text-align: left;
  }
  main .aboutPage .about2Box .timeline .timeline-item {
    justify-content: space-between;
  }
  main .aboutPage .about2Box .timeline .timeline-item .content {
    padding-right: 0;
  }
  main .aboutPage .about2Box .timeline-item::before, main .aboutPage .about2Box .timeline::after {
    left: 50%;
  }
  main .aboutPage .about2Box .timeline-item.left .content {
    order: 1;
    text-align: right;
    padding-left: 50%;
  }
  main .aboutPage .about2Box .timeline-item.right {
    padding-left: 0;
  }
  main .aboutPage .about2Box .timeline-item.right .content {
    order: 2;
    text-align: left;
    padding-right: 51%;
  }
  main .aboutPage .about3Box .rowBox {
    display: flex;
    flex-direction: row;
  }
  main .aboutPage .about3Box .rowBox .textBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  main .aboutPage .about3Box .rowBox .textBox h6 {
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  main .aboutPage .about3Box .rowBox .textBox .signBox {
    margin: 40px auto;
    padding: 30px 9%;
  }
  main .aboutPage .about3Box .rowBox .picBox img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  main .newPage .contentBox .rowBox {
    row-gap: 0;
    margin-top: 0;
    justify-content: flex-start;
  }
  main .newPage .contentBox .rowBox .content {
    padding: 12px 12px 0;
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
  }
  main .casePage .product-container {
    display: block;
  }
  main .casePage .product-container .product-sidebar {
    margin: 1em auto;
  }
  main .casePage .product-container .product-sidebar h6 {
    padding: 10px 15px;
  }
  main .casePage .product-container .product-sidebar li {
    font-size: 18px;
  }
  main .casePage .product-container .row {
    justify-content: space-between;
  }
  main .casePage .product-container .row .product-item {
    padding: 0 10px;
  }
  main .casePage .product-container .row .title {
    font-size: 18px;
  }
  main .casePage .product-container .row .card-des {
    font-size: 16px;
  }
  main .casePage .product-container .row .price {
    line-height: 1.5;
  }
  main .casePage .product-container .row .price span {
    font-size: 18px;
  }
  main .contactPage .contactBox .contentBox .textBox {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-item .carousel-text {
    background-color: rgba(247, 247, 247, 0.3843137255);
  }
  main .aboutSec {
    gap: 20px;
  }
  main .aboutSec .contentBox {
    max-width: 550px;
  }
  main .aboutSec .picBox {
    margin: 0;
    justify-content: end;
    max-width: 750px;
  }
  main .aboutSec .picBox img {
    max-width: 700px;
  }
  main .aboutSec .bgBox {
    max-width: 1200px;
  }
  main .serviceSec .title h5 br {
    display: none;
  }
  main .serviceSec .rowBox {
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
  }
  main .serviceSec .rowBox .contentBox {
    flex-direction: column;
  }
  main .serviceSec .rowBox .contentBox .pic {
    padding: 20px;
  }
  main .serviceSec .rowBox .contentBox .textBox {
    padding: 0 30px;
  }
  main .serviceSec .rowBox .contentBox .textBox h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  main .processSec .rowBox .textBox {
    max-width: 500px;
  }
  main .processSec .rowBox .textBox h3 {
    font-size: 100px;
  }
  main .processSec .rowBox .emptyBox {
    max-width: 980px;
  }
  main .reviewsSec .reviewsOwl {
    padding: 40px 70px;
  }
  main .contactSec {
    padding: 8% 0;
    background-image: url(../images/contact-bg.jpg);
  }
  main .contactSec .rowBox {
    align-items: start;
  }
  main .contactSec .rowBox .textBox .fontsize-h5 {
    font-size: 22px;
    margin-top: 15px;
  }
  main .contactSec .button-all {
    left: 6%;
    bottom: 20%;
  }
  main .newSec .newOwl {
    width: 100%;
    max-width: 1400px;
  }
  .contactBottom {
    padding: 80px 0;
  }
  .contactBottom .contactBox {
    max-width: 1700px;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
  }
  .contactBottom .contactBox .contLeft img {
    max-width: 300px;
  }
  .contactBottom .contactBox .contCenter {
    max-width: 350px;
    padding: 0 5px 0 25px;
  }
  .contactBottom .contactBox .contCenter h5 span {
    font-size: 14px;
  }
  .contactBottom .contactBox .contRight {
    max-width: 390px;
    padding: 0 15px;
  }
  main .aboutPage .aboutBox .title-center .underlineBox .leftline {
    width: 48px;
  }
  main .aboutPage .aboutBox .title-center .underlineBox .rightline {
    width: 96px;
  }
  main .aboutPage .aboutBox .contentBox .rowBox {
    padding: 30px 0;
    gap: 40px;
  }
  main .aboutPage .aboutBox .contentBox .rowBox .pic-right {
    position: relative;
  }
  main .aboutPage .aboutBox .contentBox .rowBox .pic-right .pic-absolute {
    display: block;
    position: absolute;
    width: 150px;
    top: -8%;
    left: -5%;
    z-index: -1;
  }
  main .sevicePage .contentBox .directionBox {
    border-radius: 30px;
    padding: 40px;
    margin: 70px auto;
  }
  main .newPage .contentBox .rowBox .content {
    padding: 12px 20px 0;
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
  }
  main .casePage .product-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
  }
  main .casePage .product-container .product-sidebar {
    max-width: 250px;
    margin: 0;
    margin-left: 5px;
  }
  main .casePage .product-container .product-sidebar .sidebar-toggle .toggle-btn {
    display: none;
  }
  main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu {
    display: none;
  }
  main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu li {
    padding: 5px 10px;
  }
  main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu li a {
    font-size: 15px;
  }
  main .casePage .product-container .product-sidebar ul .aside-dropdown .submenu.active {
    display: block;
  }
  main .casePage .product-container .row {
    justify-content: start;
    margin: 0;
  }
  main .casePage .product-container .row .price br {
    display: none;
  }
  main .contactPage .contactBox {
    padding: 30px 0;
  }
  main .contactPage .contactBox .contentBox .title {
    margin-bottom: 20px;
  }
  main .contactPage .contactBox .contentBox .title h3 {
    font-size: 40px;
  }
  main .contactPage .contactBox .contentBox .title p {
    line-height: 1.5;
  }
  main .contactPage .contactBox .contentBox .rowBox .textBox {
    padding: 25px;
    max-width: 900px;
  }
  main .contactPage .contactBox .contentBox .rowBox .textBox p {
    font-size: 16px;
  }
  main .contactPage .contactBox .content .formBox .rowBox {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  main .contactPage .contactBox .content .formBox .formgroup {
    margin: 15px 0;
  }
  main .contactPage .contactBox .content .formBox .formgroup label {
    font-size: 16px;
  }
  main .contactPage .contactBox .content .formBox .formgroup input,
  main .contactPage .contactBox .content .formBox .formgroup textarea {
    flex: 1;
  }
}
@media only screen and (min-width: 1400px) {
  div.carouselSlide .carousel-item .carousel-text {
    width: 40%;
    bottom: 15%;
  }
  div.carouselSlide .carousel-item .carousel-text .main-text {
    font-size: 26px;
  }
  div.carouselSlide .carousel-item .carousel-text .sub-text {
    font-size: 18px;
  }
  main .aboutSec {
    padding: 80px 0;
  }
  main .aboutSec .contentBox {
    max-width: 600px;
  }
  main .contactSec .rowBox .textBox h5 br {
    display: none;
  }
  main .contactSec .button-all {
    left: 11%;
    bottom: 22%;
  }
  main .contactSec .button-all .button {
    width: 250px;
  }
  main .contactSec .button-all .button .bg-trapezoid {
    width: 200px;
    height: 50px;
  }
  main .contactSec .button-all .button .bg-parallelogram {
    width: 250px;
    height: 60px;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 19% 100%);
  }
  main .contactSec .button-all .button .btn {
    width: 200px;
    padding: 5px 30px;
    padding-left: 50px;
    font-size: 18px;
  }
  main .newSec .newOwl {
    padding: 20px 60px;
  }
  .contactBottom .contactBox {
    gap: 10px;
  }
  .contactBottom .contactBox .contCenter p,
  .contactBottom .contactBox .contRight p {
    letter-spacing: 2px;
  }
  main .aboutPage .about1Box .rowBox {
    gap: 40px;
  }
  main .aboutPage .about1Box .rowBox .cardBox {
    padding: 40px 30px;
  }
  main .newPage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .newPage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 20px);
    margin: 10px;
  }
  main .casePage .product-container .row {
    max-width: 1100px;
  }
  main .contactPage .contactBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    align-items: start;
  }
  main .contactPage .contactBox .contentBox {
    max-width: 750px;
  }
  main .contactPage .contactBox .contentBox .title p {
    max-width: 600px;
  }
  main .contactPage .contactBox .contentBox .rowBox .textBox {
    max-width: 600px;
  }
  main .contactPage .contactBox .content {
    max-width: 600px;
  }
}
@media only screen and (min-width: 1900px) {
  main .contactSec .button-all {
    left: 13%;
    bottom: 25%;
  }
  main .casePage .product-container .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 0;
    align-items: flex-start;
    vertical-align: top;
  }
}