@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: 15px;
  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: #d4a017;
}

:root {
  --color1: #ffeda4;
  --color2: #8f6f17;
  --color3: #a2701c;
  --color4: #ca8f43;
  --color5: #d0a95b;
  --color6: #835d00;
  --color7: #d4a017;
  --color8: #e4b85c;
  --color9: #fff4ea;
}

.title-center {
  margin: 20px auto;
  text-align: center;
}
.title-center img {
  width: auto;
  align-items: center;
  margin-bottom: 10px;
  max-height: 40px;
}
.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;
  font-weight: 500;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  margin: 15px 0;
  border-radius: 25px;
  white-space: nowrap;
  line-height: 1.5;
  cursor: pointer;
  color: #d4a017;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  background-image: linear-gradient(to bottom right, #fff, #fff), linear-gradient(90deg, #ffeda4 0%, #8f6f17 23%, #a2701c 41%, #ca8f43 59%, #d0a95b 77%, #835d00 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  transition: all 0.8s ease;
}

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

.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.4;
}
.pagination ul a.active {
  background-color: #d4a017;
  color: #fff;
  font-weight: 700;
}
.pagination ul li:hover a {
  background-color: #d4a017;
  color: #fff;
  font-weight: 700;
}

.topBox {
  background-image: url(../images/why-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  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;
  text-align: center;
}
.topBox h3 {
  color: #835d00;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  font-size: 20px;
  text-align: left;
  max-width: 250px;
}
.topBox section {
  flex: none;
  padding: 0;
}

.container {
  margin: 0;
}
.container nav {
  text-align: center;
}
.container nav .breadcrumb {
  justify-content: start;
  margin: 0;
  color: #835d00;
}
.container nav .breadcrumb .breadcrumb-item a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.container nav .breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}
.container nav .breadcrumb .breadcrumb-item.active a {
  color: #835d00;
}
.container nav .breadcrumb-item + .breadcrumb-item::before {
  color: #835d00;
}

.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: 950px;
}
.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: 50px;
  }
}
@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: 45px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    padding-bottom: 25px;
    justify-content: end;
  }
  .topBox .textBox {
    padding: 20px;
    margin-left: 10%;
  }
  .topBox h3 {
    max-width: 350px;
  }
  body {
    padding-top: 60px;
  }
}
@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;
  }
  .container nav .breadcrumb .breadcrumb-item a {
    font-size: 16px;
  }
  .link-btn {
    font-size: 16px;
  }
  .topBox {
    height: 250px;
    padding-bottom: 40px;
  }
  .topBox .textBox {
    padding: 20px 20px;
    margin-left: 10%;
  }
  .topBox h3 {
    font-size: 26px;
    max-width: 800px;
  }
  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-center img {
    max-height: 55px;
  }
  .title-center p {
    font-size: 18px;
  }
  .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%;
  }
  .title-center img {
    max-height: 55px;
  }
  .topBox {
    height: 300px;
  }
  .topBox .textBox {
    max-width: 800px;
    margin-left: 15%;
  }
}
@media only screen and (min-width: 1700px) {
  body {
    padding-top: 84px;
  }
  .topBox .textBox {
    margin-left: 20%;
  }
}
@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 .serviceSec {
  padding: 30px 0 0;
  background-color: #fff4ea;
}
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;
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
}
main .serviceSec .rowBox .contentBox .pic {
  flex: 1;
  text-align: center;
}
main .serviceSec .rowBox .contentBox .pic img {
  width: 90%;
}
main .serviceSec .rowBox .contentBox .textBox {
  flex: 2;
  padding-right: 12px;
}
main .serviceSec .rowBox .contentBox .textBox h5 {
  color: #b7870f;
  margin-bottom: 10px;
  font-weight: 400;
}
main .serviceSec .rowBox .contentBox .textBox p {
  color: #808080;
}
main .aboutSec {
  padding: 30px 0 0;
  background-color: #fff4ea;
}
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 img {
  width: auto;
  max-height: 70px;
}
main .aboutSec .contentBox p {
  padding-bottom: 5px;
  line-height: 1.6;
  color: #3e3a39;
}
main .aboutSec .contentBox .link-btn {
  margin: 50px auto 10px;
}
main .whySec {
  background-color: #e2b75b;
  padding-top: 60px;
}
main .whySec .contentBox .rowBox .leftBox {
  padding: 0 5px;
}
main .whySec .contentBox .rowBox .leftBox .title {
  margin-bottom: 20px;
  padding: 0 5px;
}
main .whySec .contentBox .rowBox .leftBox .title img {
  width: auto;
  max-height: 100px;
}
main .processSec {
  background-image: url(../images/process-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
main .processSec .rowBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 20px;
}
main .processSec .rowBox .contentBox {
  padding: 5px 8px;
}
main .processSec .rowBox .contentBox .picBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
main .processSec .rowBox .contentBox .picBox img {
  width: 70%;
}
main .processSec .rowBox .contentBox .picBox div {
  position: absolute;
  font-size: 16px;
  top: 0;
  left: 65%;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
}
main .processSec .rowBox .contentBox .textBox {
  text-align: center;
}
main .processSec .rowBox .contentBox .textBox h5 {
  color: #d4a017;
  font-weight: 400;
  margin-bottom: 8px;
}
main .processSec .rowBox .contentBox .textBox p {
  padding: 0 5px;
}
main .caseSec {
  position: relative;
  width: 100%;
  padding: 60px 0;
}
main .caseSec .caseOwl {
  padding: 10px 30px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
}
main .caseSec .caseOwl .contentBox {
  width: 100%;
  margin: 0 auto;
}
main .caseSec .caseOwl .contentBox .boximg3x4 {
  border-radius: 25px;
}
main .caseSec .caseOwl .contentBox .boximg3x4 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .caseSec .caseOwl .contentBox {
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .caseSec .caseOwl .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 .caseSec .caseOwl .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: #d4a017;
  font-weight: 400;
  margin: 10px 0;
  padding: 0 5px;
}
main .caseSec .caseOwl .contentBox .textBox p {
  padding: 0 5px;
  color: #808080;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .caseSec .caseOwl .contentBox .textBox .timeP {
  line-height: 1.8;
}
main .caseSec .caseOwl .contentBox .btn {
  color: #808080;
  border-radius: 0;
  padding: 0 5px;
  transition: all 0.5s ease;
}
main .caseSec .caseOwl .contentBox:hover .boximg3x4::after,
main .caseSec .caseOwl .contentBox:focus-within .boximg3x4::after {
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  opacity: 1;
}
main .caseSec .caseOwl .contentBox:hover .boximg3x4::before,
main .caseSec .caseOwl .contentBox:focus-within .boximg3x4::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  /* 保持 translate */
}
main .caseSec .caseOwl .contentBox:hover .boximg3x4 img,
main .caseSec .caseOwl .contentBox:focus-within .boximg3x4 img {
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(0.85);
}
main .caseSec .caseOwl .contentBox:hover .btn {
  background-color: transparent;
  color: #8f794d;
  font-weight: 700;
}
main .caseSec .caseOwl .owl-carousel {
  position: relative;
  overflow: visible;
}
main .caseSec .caseOwl .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .caseSec .caseOwl .owl-nav .owl-prev,
main .caseSec .caseOwl .owl-nav .owl-next {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #d4a017;
  font-size: 15px;
  border: 1px solid #d4a017;
}
main .caseSec .caseOwl .owl-nav .owl-next {
  right: 0;
}
main .caseSec .caseOwl .owl-nav .owl-prev:hover,
main .caseSec .caseOwl .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #d4a017;
}
main .caseSec .caseOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .caseSec .caseOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .caseSec .caseOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .caseSec .caseOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .caseSec .caseOwl .owl-dots .owl-dot.active span {
  background: #333;
}
main .contactSec {
  background-image: url(../images/contact-bg.jpg);
  background-position: center;
  padding: 60px 0;
}
main .contactSec .title-center img {
  max-height: 30px;
}
main .contactSec .text-center p {
  margin-bottom: 8px;
}
main .contactSec .text-center .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
main .contactSec .text-center .button .link-btn {
  margin: 8px 0;
}

.contactBottom {
  padding: 50px 0;
  background-color: #e4b85c;
}
.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 {
  text-align: center;
}
.contactBottom .contactBox .contLeft img {
  max-width: 230px;
  margin-bottom: 20px;
}
.contactBottom .contactBox .contCenter img {
  width: 100%;
  max-width: 30px;
  height: auto;
  margin-right: 10px;
}
.contactBottom .contactBox .contCenter p {
  line-height: 2;
  margin-bottom: 5px;
  transition: all 0.8s ease;
}
.contactBottom .contactBox .contCenter p a:hover {
  color: #835d00;
}
.contactBottom .contactBox .contRight {
  text-align: center;
}
.contactBottom .contactBox .contRight img {
  max-width: 230px;
}

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

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;
  background: #482A0F;
  background: linear-gradient(rgb(72, 42, 15) 0%, rgb(162, 113, 41) 10%, rgb(213, 153, 65) 22%, rgb(137, 89, 35) 34%, rgb(211, 161, 77) 50%, rgb(240, 222, 128) 66%, rgb(155, 117, 43) 83%, rgb(102, 66, 25) 100%);
}
aside a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin: 15px 0 25px;
  position: relative;
}
aside a img {
  width: auto;
  max-width: 25px;
  max-height: 28px;
}
aside a::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: -20%;
  height: 1px;
  width: 35px;
  background-color: #fff;
}
aside .asideBottom {
  transition: opacity 0.3s ease;
  opacity: 1;
  padding-bottom: 15px;
}
aside .asideBottom a {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
aside .asideBottom img {
  max-width: 25px;
}
aside .asideBottom a::after {
  background-color: transparent;
}
aside .asideBottom.hidden {
  opacity: 0;
  pointer-events: none;
  display: 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;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  position: relative;
  text-align: center;
}
main .aboutPage .aboutBox .about-card h4 {
  color: #ca8f43;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.5;
}
main .aboutPage .aboutBox .about-card h5 {
  color: #ca8f43;
  margin-bottom: 20px;
  font-weight: 500;
}
main .aboutPage .aboutBox .about-card p {
  line-height: 1.8;
  color: #000;
}
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 h4 {
  color: #ca8f43;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.5;
}
main .aboutPage .about1Box .rowBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  padding: 20px 10px;
}
main .aboutPage .about1Box .rowBox .textBox {
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
main .aboutPage .about1Box .rowBox .textBox h6 {
  margin-bottom: 5px;
  text-align: center;
  background-color: #fff4ea;
  border-radius: 25px;
  padding: 10px;
}
main .aboutPage .about1Box .rowBox .textBox p {
  text-align: center;
  line-height: 2.5;
}

main .servicePage .serviceSec .rowBox {
  padding: 40px 0;
}
main .servicePage .serviceSec .rowBox .contentBox .textBox p {
  text-align: left;
}
main .servicePage .processSec .rowBox {
  justify-content: center;
}
main .servicePage .processSec .rowBox .contentBox .picBox img {
  max-width: 150px;
}

main .blogPage .contentBox {
  padding: 20px 0;
}
main .blogPage .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;
}
main .blogPage .contentBox .rowBox .content {
  padding: 12px 0 0;
  transition: box-shadow 0.35s ease;
}
main .blogPage .contentBox .rowBox .content .boximg3x4 {
  border-radius: 25px;
}
main .blogPage .contentBox .rowBox .content .boximg3x4 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .blogPage .contentBox .rowBox .content .textBox {
  margin-bottom: 15px;
}
main .blogPage .contentBox .rowBox .content .textBox .timeP {
  color: #808080;
  margin-top: 6px;
  padding: 0 5px;
}
main .blogPage .contentBox .rowBox .content .textBox h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5;
  color: #d4a017;
  font-weight: 400;
  margin: 10px 0;
  padding: 0 5px;
}
main .blogPage .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;
  padding-left: 5px;
}
main .blogPage .contentBox .rowBox .content .btn {
  color: #808080;
  border-radius: 0;
  padding: 0 5px;
  transition: all 0.5s ease;
}
main .blogPage .contentBox .rowBox .content .link-btn-icon {
  color: #454545;
  font-size: 16px;
  padding: 0;
}
main .blogPage .contentBox .rowBox {
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
}
main .blogPage .contentBox .rowBox .content:hover .boximg3x4::after,
main .blogPage .contentBox .rowBox .content:focus-within .boximg3x4::after {
  opacity: 1;
}
main .blogPage .contentBox .rowBox .content:hover .boximg3x4::before,
main .blogPage .contentBox .rowBox .content:focus-within .boximg3x4::before {
  opacity: 1;
  transform: none;
}
main .blogPage .contentBox .rowBox .content:hover .boximg3x4 img,
main .blogPage .contentBox .rowBox .content:focus-within .boximg3x4 img {
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
  filter: brightness(0.85);
  transform: translate(-50%, -50%) scale(1.2);
}
main .blogPage .contentBox .rowBox .content:hover .arrow {
  transform: translateX(15px); /* 向右移動 10px */
}
main .blogPage .contentBox .rowBox .content:hover .btn {
  background-color: transparent;
  color: #8f794d;
  font-weight: 700;
}
main .blogPage .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;
}
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 {
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .articlePage .articleBox .photoBox {
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
}
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 {
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
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 {
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
}
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 {
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
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 .photoPage .contentBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px 0;
}
main .photoPage .contentBox .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
  max-width: 1300px;
  margin: 10px auto 30px;
}
main .photoPage .contentBox .content .picBox {
  padding: 15px;
  position: relative;
  /* 讓遮罩能定位 */
  overflow: hidden;
}
main .photoPage .contentBox .content .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 .photoPage .contentBox .content .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 .photoPage .contentBox .content .picBox .boximg3x4 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
  border-radius: 25px;
}
main .photoPage .contentBox .content .picBox {
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .photoPage .contentBox .content .picBox .boximg3x4::before {
  content: "+";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #835d00;
  background-color: #fff;
  font-weight: 700;
  font-size: 30px;
  opacity: 0;
  transform: translateY(-8px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
  /* 點 + 一樣會觸發 a（fancybox） */
  z-index: 2;
}
main .photoPage .contentBox .content {
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
}
main .photoPage .contentBox .content .picBox:hover .boximg3x4::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg3x4::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg3x4::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg3x4::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content {
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .photoPage .contentBox .content .picBox:hover .boximg3x4 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg3x4 img {
  filter: brightness(0.85);
  transform: translate(-50%, -50%) scale(1.2);
}

main .videoPage .contentBox {
  padding: 60px 0;
}
main .videoPage .contentBox .rowBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}
main .videoPage .contentBox .rowBox .mediavideo {
  text-align: center;
}
main .videoPage .contentBox .rowBox .mediavideo iframe {
  width: 300px;
  height: 540px;
}
main .videoPage .contentBox .rowBox .mediavideo p {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.75em;
  height: 3.5em;
  width: 300px;
  margin: 5px auto;
}

main .faqPage .title-center {
  margin-top: 60px;
}
main .faqPage .title-center h4 {
  color: #b7870f;
  font-weight: normal;
}
main .faqPage .qaAccordin {
  margin: 20px auto 40px;
  padding: 20px 0;
  max-width: 1100px;
}
main .faqPage .qaAccordin .qa-item {
  background-color: #fff4ea;
  border-radius: 5px;
  overflow: hidden;
}
main .faqPage .qaAccordin .qa-item .question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  padding: 30px 20px;
  color: #000;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  font-size: 17px;
}
main .faqPage .qaAccordin .qa-item .question .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-color: #fff;
  color: #000;
  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: #000;
}
main .faqPage .qaAccordin .qa-item .answer {
  display: none;
  padding: 30px 6%;
  margin: 10px;
  margin-top: 0px;
  background-color: #fff;
  color: #666;
  transition: all 0.5s ease-in;
  font-size: 16px;
}
main .faqPage .qaAccordin .qa-item .answer.show {
  transition: all 0.5s ease-in;
  display: block;
}

main .contactPage .contactBox .contentBox .parallaxBox {
  margin: 0;
}
main .contactPage .contactBox .contentBox .parallaxBox .background-fixed-q__content {
  padding: 80px 30px;
}
main .contactPage .contactBox .contentBox .parallaxBox .content {
  text-align: center;
  margin: 0 auto;
}
main .contactPage .contactBox .contentBox .parallaxBox .content h6 {
  color: #666;
  font-weight: 800;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1px;
}
main .contactPage .contactBox .contentBox .parallaxBox .content h6 span {
  font-size: 24px;
}
main .contactPage .contactBox .contentBox .parallaxBox .content h3 {
  display: inline;
  width: auto;
  color: #a37b11;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 24px;
}
main .contactPage .contactBox .contentBox .parallaxBox .content p {
  color: #666;
  font-weight: 500;
  margin-top: 5px;
}
main .contactPage .contactBox .contentBox .parallaxBox .content .text p {
  color: #000;
  margin-top: 10px;
  font-weight: normal;
}
main .contactPage .contactBox .contentBox .text1Box {
  padding: 40px 25px;
}
main .contactPage .contactBox .contentBox .text1Box .text {
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  padding: 30px 15px;
  text-align: center;
}
main .contactPage .contactBox .contentBox .text1Box .text p {
  margin-bottom: 5px;
}
main .contactPage .contactBox .contentBox .text1Box .text a {
  color: #666;
  margin-bottom: 8px;
  transition: all 0.3s ease-in;
}
main .contactPage .contactBox .contentBox .text1Box .text a:hover {
  color: #d4a017;
  font-weight: 600;
  letter-spacing: 1px;
}

@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 .serviceSec .rowBox {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  main .serviceSec .rowBox .contentBox {
    flex-direction: column;
    margin: 5px 10px;
    flex: 0 0 calc(33.3333% - 20px);
  }
  main .serviceSec .rowBox .contentBox .pic {
    display: flex;
    align-items: end;
    justify-content: center;
  }
  main .serviceSec .rowBox .contentBox .pic img {
    width: 85%;
  }
  main .serviceSec .rowBox .contentBox .textBox {
    padding: 0 20px;
    text-align: center;
  }
  main .serviceSec .rowBox .contentBox .textBox h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  main .serviceSec .rowBox .contentBox .textBox p {
    line-height: 1.6;
    margin-bottom: 8px;
  }
  main .aboutSec {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    padding-top: 5%;
    background-image: url(../images/about-bg.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: left bottom;
  }
  main .aboutSec .contentBox {
    margin: 0;
    padding-bottom: 20px;
    max-width: 400px;
  }
  main .aboutSec .contentBox .title img {
    max-height: 80px;
  }
  main .aboutSec .contentBox p {
    padding-bottom: 8px;
  }
  main .aboutSec .contentBox .link-btn {
    margin: 30px 0 10px;
  }
  main .aboutSec .picBox img {
    display: none;
  }
  main .whySec {
    padding: 0;
  }
  main .whySec .contentBox .rowBox {
    padding: 30px 0;
    background-image: url(../images/why-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
  }
  main .whySec .contentBox .rowBox .leftBox .title img {
    content: url(../images/why-title.png);
    max-height: 70px;
  }
  main .whySec .contentBox .rowBox .picBox {
    display: none;
  }
  main .processSec {
    padding: 90px 0;
  }
  main .processSec .rowBox .contentBox .picBox {
    justify-content: center;
    margin-bottom: 15px;
  }
  main .processSec .rowBox .contentBox .picBox img {
    width: 70%;
    max-width: 150px;
  }
  main .processSec .rowBox .contentBox .picBox div {
    font-size: 18px;
    top: 0;
    left: 65%;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
  }
  main .processSec .rowBox .contentBox .textBox p {
    padding: 0 15px;
  }
  main .caseSec .caseOwl {
    padding: 20px 50px;
    max-width: 1000px;
  }
  main .caseSec .caseOwl .picBox {
    width: 90%;
  }
  main .caseSec .caseOwl .owl-nav .owl-prev,
  main .caseSec .caseOwl .owl-nav .owl-next {
    font-size: 17px;
    line-height: 17px;
  }
  main .contactSec {
    padding: 8% 0;
  }
  main .contactSec .text-center .button {
    flex-direction: row;
    gap: 10px;
  }
  .contactBottom .contactBox {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
  footer {
    font-size: 16px;
    width: 100%;
    margin: 0 auto;
  }
  aside {
    right: 10px;
    transform: scale(1);
  }
  aside a img {
    width: auto;
    max-width: 27px;
    max-height: 28px;
  }
  aside .asideBottom img {
    max-width: 22px;
  }
  main .aboutPage .aboutBox {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
  }
  main .aboutPage .aboutBox .about-card {
    position: absolute;
    z-index: 1;
    max-width: 500px;
    right: 0;
    margin-right: 5%;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 48px 40px;
  }
  main .aboutPage .aboutBox .about-bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  main .aboutPage .about1Box {
    padding: 90px 15px;
  }
  main .aboutPage .about1Box .rowBox {
    flex-direction: row;
    flex-wrap: wrap;
  }
  main .aboutPage .about1Box .rowBox .textBox {
    margin: 15px;
    flex: 0 0 calc(50% - 30px);
  }
  main .servicePage .processSec .rowBox {
    justify-content: start;
  }
  main .blogPage .contentBox .rowBox {
    row-gap: 0;
    margin-top: 0;
    justify-content: flex-start;
    padding: 10px 15px;
  }
  main .blogPage .contentBox .rowBox .content {
    flex: 0 0 calc(50% - 30px);
    margin: 10px 15px;
  }
  main .videoPage .contentBox .rowBox {
    justify-content: start;
    row-gap: 30px;
  }
  main .contactPage .contactBox .contentBox .text1Box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  main .contactPage .contactBox .contentBox .text1Box .text {
    margin: 10px 15px;
    flex: 0 0 calc(50% - 30px);
    padding: 40px 15px;
  }
}
@media only screen and (min-width: 992px) {
  div.carouselSlide .carousel-item .carousel-text {
    background-color: rgba(247, 247, 247, 0.3843137255);
  }
  main .serviceSec .rowBox {
    max-width: 1200px;
    margin: 0 auto;
  }
  main .serviceSec .rowBox .contentBox {
    margin: 5px 15px;
    flex: 0 0 calc(25% - 30px);
  }
  main .serviceSec .rowBox .contentBox .textBox {
    padding: 15px 25px;
  }
  main .serviceSec .rowBox .contentBox .textBox h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  main .aboutSec {
    margin-top: -100px;
    padding-top: 10%;
  }
  main .aboutSec .contentBox {
    padding-right: 30px;
    padding-bottom: 5%;
  }
  main .aboutSec .contentBox .title img {
    max-height: 85px;
  }
  main .aboutSec .contentBox p {
    line-height: 1.8;
    font-size: 17px;
  }
  main .whySec .contentBox .rowBox {
    padding: 7% 0;
  }
  main .whySec .contentBox .rowBox .leftBox {
    padding-left: 5%;
  }
  main .whySec .contentBox .rowBox .leftBox .title img {
    max-height: 85px;
  }
  main .processSec .rowBox .contentBox .picBox div {
    left: 60%;
  }
  main .caseSec {
    padding: 90px 0;
  }
  main .caseSec .caseOwl {
    width: 100%;
    max-width: 1400px;
  }
  .contactBottom .contactBox {
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .contactBottom .contactBox .contLeft img {
    max-width: 250px;
  }
  .contactBottom .contactBox .contLeft p {
    font-size: 17px;
  }
  .contactBottom .contactBox .contCenter {
    max-width: 400px;
    padding-left: 20px;
  }
  .contactBottom .contactBox .contCenter p {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .contactBottom .contactBox .contRight {
    padding: 0 15px;
  }
  main .aboutPage .aboutBox {
    min-height: 50vh;
  }
  main .aboutPage .aboutBox .about-card {
    margin-right: 15%;
  }
  main .aboutPage .about1Box .rowBox {
    margin: 20px auto;
  }
  main .aboutPage .about1Box .rowBox .textBox {
    margin: 15px;
    flex: 0 0 calc(25% - 30px);
  }
  main .blogPage .contentBox .rowBox .content {
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .contactPage .contactBox .contentBox .parallaxBox .content h6 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  main .contactPage .contactBox .contentBox .parallaxBox .content h6 span {
    font-size: 26px;
  }
  main .contactPage .contactBox .contentBox .parallaxBox .content h3 {
    font-size: 28px;
  }
  main .contactPage .contactBox .contentBox .parallaxBox .content .text p {
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 15px;
  }
  main .contactPage .contactBox .contentBox .text1Box {
    margin: 30px auto;
  }
  main .contactPage .contactBox .contentBox .text1Box .text {
    margin: 10px 15px;
    flex: 0 0 calc(33.3333% - 30px);
  }
  main .contactPage .contactBox .contentBox .text1Box .text a {
    font-size: 18px;
  }
}
@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 {
    margin-top: -200px;
    padding-top: 15%;
    background-size: 70%;
  }
  main .aboutSec .contentBox {
    max-width: 500px;
  }
  main .processSec {
    background-position: center bottom;
  }
  main .processSec .rowBox {
    max-width: 1300px;
    margin: 40px auto;
  }
  main .processSec .rowBox .contentBox {
    flex: 0 0 20%;
    padding: 10px 15px;
  }
  main .processSec .rowBox .contentBox .picBox {
    justify-content: center;
    margin-bottom: 20px;
  }
  main .processSec .rowBox .contentBox .picBox div {
    left: 65%;
  }
  main .processSec .rowBox .contentBox .textBox p {
    padding: 0 20px;
  }
  main .caseSec .caseOwl {
    padding: 20px 60px;
  }
  main .aboutPage .aboutBox {
    min-height: 70vh;
  }
  main .aboutPage .aboutBox .about-card h4 {
    font-size: 24px;
  }
  main .aboutPage .aboutBox .about-card p {
    font-size: 18px;
  }
  main .aboutPage .about1Box h4 {
    font-size: 24px;
  }
  main .blogPage .contentBox .rowBox {
    max-width: 1400px;
  }
  main .blogPage .contentBox .rowBox .content {
    flex: 0 0 calc(25% - 30px);
  }
}
@media only screen and (min-width: 1900px) {
  main .aboutSec {
    background-size: 75%;
  }
  main .aboutSec .contentBox {
    padding-bottom: 8%;
  }
}