@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titan+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..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;
}

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

:root {
  --color1: #cdaa92;
  --color2: #ac8a73;
  --color3: #465157;
  --color4: #bd9c86;
}

.title-center {
  margin: 20px auto;
  text-align: center;
}
.title-center img {
  width: auto;
  align-items: center;
  margin-bottom: 10px;
  max-height: 28px;
}
.title-center h6 {
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
  color: #465157;
}
.title-center h4 {
  font-size: 20px;
  background: linear-gradient(0deg, #cdaa92 0%, #ac8a73 100%);
  background: -webkit-linear-gradient(0deg, #cdaa92 0%, #ac8a73 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  margin-bottom: 8px;
}
.title-center p {
  color: #000;
  font-family: serif;
  letter-spacing: 1px;
  font-size: 15px;
}

.title {
  margin: 20px auto;
}
.title h6 {
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
  font-weight: 600;
  color: #465157;
}
.title h4 {
  background: linear-gradient(0deg, #cdaa92 0%, #ac8a73 100%);
  background: -webkit-linear-gradient(0deg, #cdaa92 0%, #ac8a73 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 20px;
}
.title .line-with-cut {
  width: 3em;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%); /* 創建明顯的切面 */
  margin-bottom: 20px;
}
.title img {
  width: 50%;
  max-width: 200px;
  margin-bottom: 10px;
}

.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: 50%;
  color: #303030;
  float: left;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.5;
}
.pagination ul a.active {
  background-color: #cdaa92;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #cdaa92;
  color: #fff;
  font-weight: 700;
}

.topBox {
  background-image: url(../images/contact-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 30px 15px;
  row-gap: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}
.topBox .textBox {
  padding: 15px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.topBox h3 {
  color: #465157;
  font-weight: 600;
  padding: 0 30px;
  margin-bottom: 15px;
  position: relative;
}
.topBox h3::after {
  content: "";
  position: absolute;
  margin-top: 5px;
  width: 90%;
  height: 0.7em;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  background-color: #cdaa92;
  z-index: -1;
}
.topBox section {
  flex: none;
}

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

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

.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: 40px;
  }
  .articlecontent img {
    max-width: 1000px !important;
    max-height: 100% !important;
  }
  .articlecontent iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 360px) {
  body {
    padding-top: 45px;
  }
}
@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%;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  .title img {
    width: 70%;
    max-width: 420px;
    margin-bottom: 15px;
  }
  .title-center img {
    max-height: 31px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    background-position: center 70%;
  }
  .topBox .textBox {
    padding: 20px;
  }
  body {
    padding-top: 64px;
  }
}
@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%;
  }
  .breadcrumbRight {
    margin-left: 0;
  }
  .breadcrumbRight .breadcrumb {
    padding-left: 0;
  }
  .link-btn {
    font-size: 18px;
  }
  .topBox {
    height: 220px;
  }
  .topBox h3 {
    font-size: 30px;
  }
  body {
    padding-top: 74px;
  }
  .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;
  }
  body {
    padding-top: 74px;
  }
}
@media only screen and (min-width: 1700px) {
  body {
    padding-top: 85px;
  }
}
@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-icon,
div.carouselSlide .carousel-control-next-icon {
  background-color: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  border: 1px solid #000;
  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 {
  background-image: url(../images/about-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  padding: 30px 0 0;
}
main .aboutSec .contentBox {
  margin: 0 auto 20px;
  max-width: 350px;
}
main .aboutSec .contentBox p {
  padding-bottom: 5px;
  line-height: 1.5;
}
main .aboutSec .contentBox img {
  width: 80%;
  max-width: 250px;
  padding: 20px 0;
}
main .serviceSec {
  padding: 30px 0;
}
main .serviceSec .contentBox {
  margin: 0 auto;
}
main .serviceSec .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  padding-left: 8px;
}
main .serviceSec .contentBox .rowBox .picBox {
  margin: 10px 5px;
  flex: 0 0 calc(50% - 10px);
}
main .serviceSec .contentBox .rowBox .picBox img {
  transition: all 0.3s ease-out;
}
main .serviceSec .contentBox .rowBox .picBox:hover img {
  transform: scale(1.1);
}
main .reviewsSec {
  padding: 50px 0;
  background: #eaecf1;
  background: linear-gradient(90deg, #eaecf1 0%, #f8f8f8 100%);
}
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.png);
  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: #cdaa92;
}
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;
}
main .reviewsSec .reviewsOwl .picBox .userBox img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
}
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: #cdaa92;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #b0b0b0;
}
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: #cdaa92;
  border: none;
}
main .processSec {
  padding: 50px 0 0;
}
main .processSec .contentBox {
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .processSec .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  padding: 30px 0;
  margin-right: 15px;
}
main .processSec .contentBox .rowBox .iconBox {
  flex: 0 0 calc(50% - 6px);
  text-align: center;
  padding: 0 5px;
  position: relative;
  margin-right: 6px;
}
main .processSec .contentBox .rowBox .iconBox .picBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
main .processSec .contentBox .rowBox .iconBox .picBox img {
  width: auto;
  height: 100%;
  max-width: 120px;
}
main .processSec .contentBox .rowBox .iconBox h6 {
  margin-bottom: 10px;
  font-weight: normal;
}
main .processSec .contentBox .rowBox .iconBox .process-arrow {
  position: absolute;
  right: -5%;
  top: 35%;
  width: 25px;
}
main .contactSec {
  background-image: url(../images/contact-bg.jpg);
  background-position: center right;
}

.contactBottom {
  padding: 30px 0;
  border-top: 1px solid #cdaa92;
}
.contactBottom .titleBox {
  text-align: center;
}
.contactBottom .titleBox img {
  width: 60%;
  text-align: center;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}
.contactBottom .titleBox h6 {
  font-weight: 500;
  color: #4d4d4d;
  padding: 0 20px;
  line-height: 1.5;
}
.contactBottom .rowBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  padding: 50px 0;
}
.contactBottom .rowBox .contLeft {
  max-width: 350px;
}
.contactBottom .rowBox .contLeft h5 {
  color: #cdaa92;
  margin-bottom: 8px;
}
.contactBottom .rowBox .contLeft p {
  margin-bottom: 5px;
  color: #4d4d4d;
}
.contactBottom .rowBox .contLeft p span {
  width: 1em;
  display: inline-block;
}
.contactBottom .rowBox .contLeft p a {
  transition: all 0.3s ease-in-out;
}
.contactBottom .rowBox .contLeft p a:hover {
  color: #bd9c86;
}
.contactBottom .rowBox .contCenter {
  justify-content: start;
  max-width: 350px;
}
.contactBottom .rowBox .contCenter h5 {
  color: #cdaa92;
  margin-bottom: 8px;
}
.contactBottom .rowBox .contCenter p {
  margin-bottom: 5px;
  color: #4d4d4d;
}
.contactBottom .rowBox .contCenter p a {
  transition: all 0.3s ease-in-out;
}
.contactBottom .rowBox .contCenter p a:hover {
  color: #bd9c86;
}
.contactBottom .rowBox .contCenter a {
  transition: all 0.5s ease-in-out;
}
.contactBottom .rowBox .contCenter a:hover {
  color: #fff;
}
.contactBottom .rowBox .contRight {
  max-width: 350px;
}
.contactBottom .rowBox .contRight h5 {
  color: #cdaa92;
  margin-bottom: 8px;
}
.contactBottom .rowBox .contRight p {
  margin-bottom: 5px;
  color: #4d4d4d;
  font-size: 14px;
}

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

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 .parallax {
  margin: 0;
}
main .aboutPage .parallax .background-fixed-q__background {
  background-position: 55% 100%;
}
main .aboutPage .parallax .background-fixed-q__content {
  padding: 7em 3em;
}
main .aboutPage .parallax .background-fixed-q__content div h4 {
  margin-bottom: 10px;
  color: #ac8a73;
}
main .aboutPage .parallax .background-fixed-q__content div h6 {
  color: #1b1b1b;
  font-weight: normal;
  line-height: 1.5;
}
main .aboutPage .contentBox {
  padding: 30px 0;
}
main .aboutPage .contentBox .rowBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 20px auto;
}
main .aboutPage .contentBox .rowBox .content {
  position: relative;
  transition: transform 0.8s ease;
  margin: 5px;
  display: flex;
  align-items: stretch;
  max-width: 400px;
}
main .aboutPage .contentBox .rowBox .content .textBox {
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  background: #f8f8f8;
  background: linear-gradient(135deg, #f8f8f8 0%, #dbdfea 100%);
  display: flex;
  align-items: stretch;
}
main .aboutPage .contentBox .rowBox .content .textBox .picBox {
  flex: 1; /* 自動撐滿剩餘空間 */
  margin: 5px;
  padding: 20px;
  border-radius: 25px;
  background: #f8f8f8;
  background: linear-gradient(-45deg, #f8f8f8 0%, #dbdfea 100%);
}
main .aboutPage .contentBox .rowBox .content .textBox .picBox h5 {
  line-height: 1.8;
  color: #465157;
  margin-bottom: 8px;
}
main .aboutPage .contentBox .rowBox .content::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: -4%;
  left: -3%;
  border-radius: 10px;
  z-index: -100;
  background: #cdaa92;
  background: linear-gradient(90deg, #cdaa92 0%, #ac8a73 55%, #666666 100%);
}
main .aboutPage .contentBox .rowBox .content:hover {
  transform: scale(1.1);
}

main .sevicePage .titleBox {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
  /* 左側書名號 「 */
  /* 右側書名號 」 */
}
main .sevicePage .titleBox .titlestyle {
  color: #465157;
  margin: 15px auto;
  padding: 10px 20px;
  position: relative;
  max-width: 650px;
}
main .sevicePage .titleBox .titlestyle::before {
  content: "「";
  position: absolute;
  left: -8%;
  top: -20%;
  font-size: 40px;
  font-weight: bold;
  color: #cdaa92;
  text-shadow: 2px 2px 0 #ac8a73, 4px 4px 0 #e0c4a3; /* 立體感 */
}
main .sevicePage .titleBox .titlestyle::after {
  content: "」";
  position: absolute;
  right: -8%;
  bottom: 0;
  font-size: 40px;
  font-weight: bold;
  color: #cdaa92;
  text-shadow: 2px 2px 0 #ac8a73, 4px 4px 0 #e0c4a3; /* 立體感 */
}
main .sevicePage .titleBox h6 {
  color: #bd9c86;
  margin-bottom: 8px;
}
main .sevicePage .directionBox {
  margin: 10px auto 50px;
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 20px;
}
main .sevicePage .directionBox p {
  margin-bottom: 8px;
}
main .sevicePage .suitableBox {
  padding: 30px 0;
}
main .sevicePage .suitableBox h4 {
  text-align: center;
  color: #465157;
  margin-bottom: 30px;
}
main .sevicePage .suitableBox .rowBox {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 20px auto;
  align-items: center;
}
main .sevicePage .suitableBox .rowBox .content {
  position: relative;
  transition: transform 0.8s ease;
  margin: 5px;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
}
main .sevicePage .suitableBox .rowBox .content .textBox {
  width: 100%;
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  background: #f8f8f8;
  background: linear-gradient(135deg, #f8f8f8 0%, #dbdfea 100%);
  display: flex;
  align-items: stretch;
}
main .sevicePage .suitableBox .rowBox .content .textBox .picBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; /* 自動撐滿剩餘空間 */
  margin: 5px;
  padding: 35px 20px;
  border-radius: 20px;
  background: #f8f8f8;
  background: linear-gradient(-45deg, #f8f8f8 0%, #dbdfea 100%);
}
main .sevicePage .suitableBox .rowBox .content .textBox .picBox h6 {
  line-height: 1.8;
  color: #465157;
  margin-bottom: 8px;
}
main .sevicePage .suitableBox .rowBox .content::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: -4%;
  left: -3%;
  border-radius: 10px;
  z-index: -100;
  background: #cdaa92;
  background: linear-gradient(90deg, #cdaa92 0%, #ac8a73 55%, #666666 100%);
}
main .sevicePage .suitableBox .rowBox .content:hover {
  transform: scale(1.1);
}
main .sevicePage .suitableBox.service5 .rowBox .content img {
  border-radius: 10px;
}
main .sevicePage .suitableBox.service5 .rowBox .content:has(img)::after {
  background: transparent;
}
main .sevicePage .picBox {
  text-align: center;
  margin: 30px 0;
}
main .sevicePage .picBox .imgBox {
  margin: 0 auto;
  width: 90%;
  height: 250px;
  border-radius: 20px;
  background-image: url(../images/servicePage1-pic1.jpg);
  background-size: cover;
  background-position: center;
  max-width: 1200px;
}
main .sevicePage .picBox .img2 {
  background-image: url(../images/servicePage2-pic1.jpg);
}
main .sevicePage .picBox .img3 {
  background-image: url(../images/servicePage3-pic1.jpg);
}
main .sevicePage .picBox .img4 {
  background-image: url(../images/servicePage4-pic1.jpg);
}
main .sevicePage .picBox .img6 {
  background-image: url(../images/servicePage6-pic1.jpg);
}
main .sevicePage .processBox {
  padding: 30px 0;
}
main .sevicePage .processBox h4 {
  text-align: center;
  color: #465157;
  margin-bottom: 30px;
}
main .sevicePage .processBox .rowBox {
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 40px;
  max-width: 250px;
}
main .sevicePage .processBox .rowBox .textBox {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
main .sevicePage .processBox .rowBox .textBox .stepBox {
  background-color: #ac8a73;
  border: 2px solid #ac8a73;
  border-radius: 5px;
  padding: 8px 10px;
  margin-bottom: -15px;
  text-align: center;
}
main .sevicePage .processBox .rowBox .textBox .stepBox h6 {
  line-height: 30px;
  color: #fff;
}
main .sevicePage .processBox .rowBox .textBox .textcontentBox {
  border-bottom: 2px solid #ac8a73;
  padding: 0 10px 15px 18px;
  min-width: 150px;
}
main .sevicePage .processBox .rowBox .textBox .textcontentBox h5 {
  font-weight: normal;
}
main .sevicePage .parallax {
  margin-bottom: 0;
}
main .sevicePage .parallax .background-fixed-q__content h6 {
  padding-bottom: 8px;
  color: #465157;
  line-height: 1.5;
}
main .sevicePage .parallax .background-fixed-q__content > div {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 700px;
  padding: 20px 15px;
}

main .casePage .contentBox {
  padding: 20px 0;
}
main .casePage .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 .casePage .contentBox .rowBox .content {
  padding: 12px 12px 0;
  border-radius: 5px;
  transition: box-shadow 0.35s ease;
}
main .casePage .contentBox .rowBox .content .boximg1x1 {
  border-radius: 10px;
}
main .casePage .contentBox .rowBox .content .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .casePage .contentBox .rowBox .content .textBox .timeP {
  color: #808080;
  margin-top: 6px;
}
main .casePage .contentBox .rowBox .content .textBox h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-weight: 700;
  margin: 8px 0;
}
main .casePage .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 .casePage .contentBox .rowBox .content .link-btn-icon {
  color: #454545;
  font-size: 16px;
  padding: 0;
}
main .casePage .contentBox .rowBox .content:hover .boximg1x1::after,
main .casePage .contentBox .rowBox .content:focus-within .boximg1x1::after {
  opacity: 1;
}
main .casePage .contentBox .rowBox .content:hover .boximg1x1::before,
main .casePage .contentBox .rowBox .content:focus-within .boximg1x1::before {
  opacity: 1;
  transform: none;
}
main .casePage .contentBox .rowBox .content:hover .boximg1x1 img,
main .casePage .contentBox .rowBox .content:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .casePage .contentBox .rowBox .content:hover .boximg1x1 img,
main .casePage .contentBox .rowBox .content:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}
main .casePage .contentBox .rowBox .content:hover .arrow {
  transform: translateX(15px); /* 向右移動 10px */
}
main .casePage .contentBox .rowBox a:hover {
  color: #000;
}

main .articlePage .articleBox {
  margin: 20px auto;
}
main .articlePage .articleBox .articlecontent {
  padding-top: 20px;
}

main .faqPage .qaAccordin {
  margin: 20px auto 40px;
  max-width: 900px;
  padding-bottom: 30px;
}
main .faqPage .qaAccordin .qa-item {
  border: 1px solid #465157;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
main .faqPage .qaAccordin .qa-item .question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  padding: 30px;
  color: #465157;
  background-color: #fff;
  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: #465157;
  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 {
  background-color: #465157;
  color: #fff;
}
main .faqPage .qaAccordin .qa-item .question.active .icon {
  background-color: #fff;
  color: #465157;
}
main .faqPage .qaAccordin .qa-item .answer {
  display: none;
  padding: 16px;
  padding-top: 0;
  padding-left: 25px;
  background-color: #465157;
  color: #fff;
  transition: all 0.5s ease-in;
  font-size: 14px;
}
main .faqPage .qaAccordin .qa-item .answer.show {
  transition: all 0.5s ease-in;
  display: block;
}

main .processPage .contentBox {
  text-align: center;
  padding: 30px 0;
}
main .processPage .contentBox .titleBox {
  padding: 20px 0;
  margin: 0 auto;
  /* 左側書名號 「 */
  /* 右側書名號 」 */
}
main .processPage .contentBox .titleBox h3.titlestyle {
  color: #465157;
  margin: 15px auto;
  padding: 10px 20px;
  position: relative;
  max-width: 330px;
}
main .processPage .contentBox .titleBox .titlestyle::before {
  content: "「";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 40px;
  font-weight: bold;
  color: #cdaa92;
  text-shadow: 2px 2px 0 #ac8a73, 4px 4px 0 #e0c4a3; /* 立體感 */
}
main .processPage .contentBox .titleBox .titlestyle::after {
  content: "」";
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 40px;
  font-weight: bold;
  color: #cdaa92;
  text-shadow: 2px 2px 0 #ac8a73, 4px 4px 0 #e0c4a3; /* 立體感 */
}
main .processPage .contentBox .titleBox h6 {
  color: #bd9c86;
  margin-bottom: 8px;
}
main .processPage .contentBox .rowBox {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
}
main .processPage .contentBox .rowBox .textBox {
  padding: 20px 5px;
  background: #cdaa92;
  background: linear-gradient(130deg, #cdaa92 0%, #ac8a73 100%);
  border-radius: 0px;
  position: relative;
  /* 對話框三角形 */
}
main .processPage .contentBox .rowBox .textBox .iconBox {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}
main .processPage .contentBox .rowBox .textBox .iconBox img {
  z-index: 1;
  width: 50%;
}
main .processPage .contentBox .rowBox .textBox .iconBox::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(90deg, #e5eaea 0%, #ffffff 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  z-index: 0;
}
main .processPage .contentBox .rowBox .textBox .iconBox::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 15px solid #e5eaea;
}
main .processPage .contentBox .rowBox .textBox .text {
  padding: 15px 8px;
}
main .processPage .contentBox .rowBox .textBox .text h6 {
  color: #465157;
  font-weight: normal;
  text-align: center;
}
main .processPage .contentBox .rowBox .textBox .text h5 {
  color: #465157;
  margin-bottom: 40px;
  position: relative;
  font-weight: 700;
  text-align: center;
}
main .processPage .contentBox .rowBox .textBox .text h5::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 28px;
  bottom: -35px;
  left: 50%;
  background-color: #465157;
}
main .processPage .contentBox .rowBox .textBox .text p {
  color: #fff;
  text-align: center;
}
main .processPage .contentBox .rowBox .arrow {
  content: "▼";
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: #ac8a73;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
}

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: #ac8a73;
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 8px;
}
main .contactPage .contactBox .contentBox .rowBox .textBox {
  letter-spacing: 1px;
  padding: 8px 0;
}
main .contactPage .contactBox .contentBox .rowBox .textBox h5 {
  padding: 10px 0;
  font-weight: 500;
  color: #ac8a73;
}
main .contactPage .contactBox .contentBox .rowBox .textBox h5 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 h6 {
  line-height: 2;
}
main .contactPage .contactBox .contentBox .rowBox .picBox img {
  max-width: 250px;
}
main .contactPage .contactBox .formBox {
  border-radius: 10px;
  position: relative;
}
main .contactPage .contactBox .formBox .formcontent {
  padding: 20px;
}
main .contactPage .contactBox .formBox .formcontent h4 {
  margin: 10px 0;
  color: #465157;
}
main .contactPage .contactBox .formBox .formcontent p {
  color: #333;
  margin-bottom: 30px;
}
main .contactPage .contactBox .formBox .formcontent .formgroup {
  margin: 1.5rem 0;
  width: 100%;
}
main .contactPage .contactBox .formBox .formcontent .formgroup label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
main .contactPage .contactBox .formBox .formcontent .formgroup label .required {
  color: red;
  margin-right: 0.25rem;
}
main .contactPage .contactBox .formBox .formcontent .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 .formBox .formcontent .formgroup select option {
  width: 100%;
}
main .contactPage .contactBox .formBox .formcontent .formgroup input[type=text],
main .contactPage .contactBox .formBox .formcontent .formgroup input[type=tel],
main .contactPage .contactBox .formBox .formcontent .formgroup input[type=date],
main .contactPage .contactBox .formBox .formcontent .formgroup textarea,
main .contactPage .contactBox .formBox .formcontent .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 .formBox .formcontent .formgroup input:focus,
main .contactPage .contactBox .formBox .formcontent .formgroup textarea:focus,
main .contactPage .contactBox .formBox .formcontent .formgroup select:focus {
  border-color: #3e6450;
  outline: none;
}
main .contactPage .contactBox .formBox .formcontent .formgroup input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 3em;
}
main .contactPage .contactBox .formBox .formcontent .formgroup textarea {
  resize: vertical;
}
main .contactPage .contactBox .formBox .formcontent .formgroup .captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
main .contactPage .contactBox .formBox .formcontent .formgroup .captcha-box .captcha-container {
  flex-shrink: 0;
  /* 防止圖片被壓縮 */
}
main .contactPage .contactBox .formBox .formcontent .formgroup .captcha-box .captcha-container .captcha-img {
  height: 40px;
}
main .contactPage .contactBox .formBox .formcontent .submit-btn {
  margin: 40px auto;
  padding: 0;
  border: none;
  text-align: center;
}
main .contactPage .contactBox .formBox .formcontent .submit-btn button[type=submit] {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 15px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main .contactPage .contactBox .formBox .formcontent .submit-btn button[type=submit]:hover {
  background-color: #cdaa92;
  color: #fff;
  border: 1px solid #cdaa92;
}

@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: flex-end;
    background-position: center;
    padding: 50px 0;
  }
  main .aboutSec .contentBox {
    margin: 0;
    padding-bottom: 20px;
    max-width: 430px;
  }
  main .aboutSec .contentBox p {
    padding-bottom: 8px;
  }
  main .aboutSec .contentBox img ~ p {
    padding-bottom: 0;
  }
  main .aboutSec .picBox img {
    display: none;
  }
  main .serviceSec .contentBox .rowBox {
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
  }
  main .serviceSec .contentBox .rowBox .picBox {
    margin: 10px;
    flex: 0 0 calc(33.3333% - 20px);
  }
  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 .processSec .contentBox .rowBox {
    padding: 50px 0;
  }
  main .processSec .contentBox .rowBox .iconBox {
    padding: 0 15px;
    flex: 0 0 25%;
    margin: 0;
  }
  main .contactSec {
    display: flex;
    flex-direction: row-reverse;
  }
  main .contactSec .contentBox p {
    padding: 0;
  }
  footer {
    font-size: 16px;
    width: 100%;
    margin: 0 auto;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  main .aboutPage .contentBox .rowBox {
    margin: 50px auto;
  }
  main .aboutPage .contentBox .rowBox .content {
    margin: 10px;
    flex: 0 0 calc(33.3333% - 20px);
  }
  main .sevicePage .contentBox .suitableBox .rowBox {
    margin: 50px auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  main .sevicePage .contentBox .suitableBox .rowBox .content {
    margin: 10px;
    flex: 0 0 calc(50% - 20px);
  }
  main .sevicePage .contentBox .processBox {
    padding: 30px 0;
  }
  main .sevicePage .contentBox .processBox .rowBox {
    padding: 50px 0;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  main .casePage .contentBox .rowBox {
    row-gap: 0;
    margin-top: 0;
    justify-content: flex-start;
  }
  main .casePage .contentBox .rowBox .content {
    padding: 12px 12px 0;
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
  }
  main .casePage .contentBox .rowBox .content .textBox h5 {
    font-size: 18px;
  }
  main .processPage .contentBox .rowBox {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  main .processPage .contentBox .rowBox .textBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px 20px;
  }
  main .processPage .contentBox .rowBox .textBox .iconBox {
    flex: 0 0 33%;
  }
  main .processPage .contentBox .rowBox .textBox .iconBox img {
    width: 40%;
    max-width: 83px;
  }
  main .processPage .contentBox .rowBox .textBox .iconBox::before {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  main .processPage .contentBox .rowBox .textBox .iconBox::after {
    top: 50%;
    left: 93%;
    right: 0;
    transform: translateY(-50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 16px solid #fff;
  }
  main .processPage .contentBox .rowBox .textBox .text {
    flex: 0 0 66%;
  }
  main .processPage .contentBox .rowBox .textBox.rowreverse {
    flex-direction: row-reverse;
    background: #cdaa92;
    background: linear-gradient(-130deg, #cdaa92 0%, #ac8a73 100%);
  }
  main .processPage .contentBox .rowBox .textBox.rowreverse .iconBox::after {
    left: -1%;
    border-left: transparent;
    border-right: 16px solid #e5eaea;
  }
  main .processPage .contentBox .rowBox .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    margin-bottom: -30px;
  }
  main .processPage .contentBox .rowBox .emty {
    width: 40px;
    height: 40px;
  }
  main .processPage .contentBox .rowBox.rowreverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-item .carousel-text {
    background-color: rgba(247, 247, 247, 0.3843137255);
  }
  main .serviceSec {
    padding: 50px 0;
  }
  main .serviceSec .contentBox .rowBox {
    max-width: 900px;
  }
  main .serviceSec .contentBox .rowBox .picBox {
    margin: 10px 15px;
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .reviewsSec .reviewsOwl {
    padding: 40px 70px;
  }
  main .reviewsSec .reviewsOwl .owl-nav .owl-prev,
  main .reviewsSec .reviewsOwl .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    font-size: 18px;
    line-height: 18px;
  }
  main .processSec {
    padding: 70px 0;
  }
  main .processSec .contentBox .rowBox {
    max-width: 1000px;
  }
  main .processSec .contentBox .rowBox .iconBox .picBox {
    margin-bottom: 15px;
  }
  main .processSec .contentBox .rowBox .iconBox .picBox img {
    max-width: 170px;
  }
  main .processSec .contentBox .rowBox .iconBox .process-arrow {
    right: -4%;
    width: 30px;
  }
  main .productSec .productOwl {
    padding: 20px 70px 50px;
  }
  main .productSec .productOwl .owl-nav {
    top: 40%;
  }
  main .productSec .productOwl .owl-nav .owl-prev,
  main .productSec .productOwl .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    font-size: 18px;
    line-height: 18px;
  }
  .contactBottom .rowBox {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 25px;
  }
  .contactBottom .rowBox .contLeft {
    max-width: 280px;
  }
  .contactBottom .rowBox .contCenter {
    max-width: 250px;
    padding-left: 40px;
  }
  .contactBottom .rowBox .contRight {
    max-width: 380px;
  }
  main .aboutPage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .aboutPage .contentBox .rowBox .content {
    margin: 10px 15px;
    flex: calc(33.3333% - 30px);
  }
  main .aboutPage .contentBox .rowBox .content .textBox .picBox {
    padding: 50px 30px;
  }
  main .aboutPage .contentBox .rowBox .content .textBox .picBox h5 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  main .aboutPage .parallax .background-fixed-q__content {
    padding: 9em 3em;
  }
  main .sevicePage .contentBox .titleBox {
    padding: 40px 0;
  }
  main .sevicePage .contentBox .directionBox {
    max-width: 1200px;
    border-radius: 30px;
    padding: 40px 20px;
    margin-bottom: 70px;
    text-align: center;
  }
  main .sevicePage .contentBox .suitableBox {
    padding: 60px 0;
  }
  main .sevicePage .contentBox .suitableBox .rowBox {
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
  }
  main .sevicePage .contentBox .suitableBox .rowBox .content {
    flex: 1;
    margin: 10px 15px;
  }
  main .sevicePage .contentBox .suitableBox .rowBox .content .textBox .picBox {
    padding: 40px 15px;
  }
  main .sevicePage .contentBox .suitableBox.service5 .rowBox {
    flex-wrap: wrap;
  }
  main .sevicePage .contentBox .suitableBox.service5 .rowBox .content {
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .sevicePage .contentBox .processBox {
    padding: 60px 0;
  }
  main .sevicePage .contentBox .processBox .rowBox {
    max-width: 1200px;
  }
  main .sevicePage .contentBox .processBox .rowBox .textBox {
    flex: 0 0 calc(25% - 10px);
    margin: 0 5px;
  }
  main .sevicePage .contentBox .processBox .rowBox .textBox .stepBox {
    padding: 12px 14px;
    margin-bottom: -20px;
    flex: 1;
  }
  main .sevicePage .contentBox .processBox .rowBox .textBox .stepBox h6 {
    line-height: 35px;
  }
  main .sevicePage .contentBox .processBox .rowBox .textBox .textcontentBox {
    padding: 0 15px 20px 23px;
    flex: 2;
  }
  main .sevicePage .contentBox .parallax .background-fixed-q__content h6 {
    font-size: 20px;
  }
  main .sevicePage .contentBox .parallax .background-fixed-q__content > div {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 900px;
    padding-right: 0;
  }
  main .contactPage .contactBox {
    padding: 30px 0;
  }
  main .contactPage .contactBox .formBox .formcontent .rowBox {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  main .contactPage .contactBox .formBox .formcontent .formgroup {
    margin: 15px 0;
  }
  main .contactPage .contactBox .formBox .formcontent .formgroup label {
    font-size: 16px;
  }
  main .contactPage .contactBox .formBox .formcontent .formgroup input,
  main .contactPage .contactBox .formBox .formcontent .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 .casePage .contentBox .rowBox {
    max-width: 1200px;
  }
  main .casePage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 10px);
    margin: 10px 5px;
  }
  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: 500px;
    padding-top: 30px;
  }
  main .contactPage .contactBox .formBox {
    max-width: 600px;
  }
}