@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");
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: "Red Hat Text", "Noto Sans TC", "微軟正黑體";
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

.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;
  /* 撐開內容區 */
}

body {
  padding-top: 65px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
  line-height: 1.5em;
}

h6 {
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  line-height: 1.5em;
  word-break: break-all;
  overflow-wrap: break-word;
  margin-bottom: 5px;
  margin: 0;
}

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

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

a:hover {
  color: #708293;
}

:root {
  --color1: #edb558;
  --color2: #242f40;
  --color3: #a15904;
}

.fcwhite {
  color: #fff;
}

.fcblack {
  color: #000;
}

.title-center {
  margin: 30px 0;
  text-align: center;
  padding: 0 10px;
}
.title-center img {
  width: auto;
  align-items: center;
  max-height: 40px;
}
.title-center h3,
.title-center h5 {
  margin: 10px 0;
}
.title-center p {
  margin: 10px 0;
}

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

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

.topBox {
  background-color: #242f40;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 30px 0;
  row-gap: 20px;
}
.topBox h3 {
  color: #fff;
  font-weight: 700;
}
.topBox section {
  flex: none;
}

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

.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: 20px 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: 50px;
  }
}
@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;
    line-height: 2em;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
    line-height: 1.8em;
  }
  .title-center img {
    max-height: 60px;
  }
  .link-btn {
    font-size: 18px;
  }
  .link-btn-left {
    font-size: 16px;
  }
  .breadcrumbRight {
    justify-content: space-around;
  }
  .topBox {
    height: 200px;
  }
  .topBox h2 {
    font-size: 35px;
  }
}
@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;
  }
  .topBox {
    margin-bottom: 30px;
  }
  body {
    padding-top: 90px;
  }
}
@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;
  }
}
@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 button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
div.carouselSlide .carousel-control-prev-icon,
div.carouselSlide .carousel-control-next-icon {
  background-color: #000;
  color: #FFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .aboutSec {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column-reverse;
}
main .aboutSec .contentBox {
  margin: 0 auto;
  padding: 20px 0;
}
main .aboutSec .contentBox img {
  width: 85%;
  max-width: 350px;
  margin: 30px 0 15px;
}
main .aboutSec .contentBox h5 {
  margin: 15px 0;
}
main .aboutSec .contentBox p {
  margin: 5px 0;
}
main .aboutSec .contentBox .link-button {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin: 10px 0;
  gap: 5px;
  padding: 15px 0;
}
main .aboutSec .contentBox .link-button .link-btn {
  border-radius: 40px;
  justify-content: center;
  font-style: italic;
  align-items: center;
  width: 11em;
  gap: 0;
  font-size: 13px;
}
main .aboutSec .contentBox .link-button .btn-yellow {
  color: #242f40;
  background-color: #e3c995;
  position: relative;
}
main .aboutSec .contentBox .link-button .btn-yellow:hover {
  background: #fff;
  border: 1px solid #242f40;
}
main .aboutSec .contentBox .link-button .btn-blue {
  color: #e3c995;
  background: #385C83;
  background: linear-gradient(90deg, rgb(56, 92, 131) 28%, rgb(40, 51, 72) 100%);
}
main .aboutSec .contentBox .link-button .btn-blue:hover {
  color: #242f40;
  background: #fff;
  border: 1px solid #242f40;
}
main .aboutSec .contentBox .link-button .arrow {
  position: relative;
  display: inline-block;
  /* 讓圓點能定位 */
  z-index: 1;
  font-size: 20px;
  font-style: normal;
}
main .aboutSec .contentBox .link-button .arrow::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}
main .serviceSec {
  width: 100%;
  padding: 50px 0;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .serviceSec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  row-gap: 10px;
}
main .serviceSec .flexBox .contentBox {
  padding: 0 10px 10px;
}
main .serviceSec .flexBox .contentBox img {
  width: 100%;
  margin-bottom: 10px;
}
main .serviceSec .flexBox .contentBox .textBox {
  text-align: center;
}
main .serviceSec .flexBox .contentBox .textBox h5 {
  color: #a15904;
}
main .phoneSec {
  text-align: center;
  padding: 20px 0 30px;
}
main .phoneSec h6 {
  margin: 15px 0;
}
main .phoneSec img {
  width: 40%;
  max-width: 250px;
  max-height: 50px;
}
main .processSec {
  width: 100%;
  padding: 30px 0 50px;
  text-align: center;
  background-image: url(../images/process-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
main .processSec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
main .processSec .flexBox .contentBox {
  padding: 0 10px 10px;
}
main .processSec .flexBox .contentBox img {
  width: 80%;
  margin-bottom: 10px;
  max-width: 200px;
}
main .processSec .flexBox .contentBox h5 {
  color: #a15904;
}
main .processSec .flexBox .contentBox p {
  font-weight: 500;
  padding: 0 10px;
}
main .caseSec {
  width: 100%;
  padding: 50px 0;
}
main .caseSec .title-center p {
  color: #808080;
}
main .caseSec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  row-gap: 10px;
}
main .caseSec .flexBox .contentBox {
  padding: 0 10px 10px;
}
main .caseSec .flexBox .contentBox .boximg4x5 {
  border-radius: 30px;
}
main .caseSec .flexBox .contentBox img {
  width: 100%;
  margin-bottom: 10px;
}
main .caseSec .flexBox .contentBox .textBox {
  padding: 0 10px;
  text-align: center;
}
main .caseSec .flexBox .contentBox .textBox h5 {
  color: #a15904;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
main .houseSec {
  width: 100%;
  padding: 50px 0;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .houseSec .title-center p {
  color: #a15904;
}
main .houseSec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  align-items: end;
  row-gap: 10px;
}
main .houseSec .flexBox .contentBox {
  padding: 0 0 10px;
}
main .houseSec .flexBox .contentBox img {
  width: 80%;
  margin-bottom: 10px;
  max-width: 200px;
}
main .houseSec .flexBox .contentBox .textBox {
  padding: 0 10px;
  text-align: center;
}
main .houseSec .flexBox .contentBox .textBox h5 {
  color: #a15904;
  font-size: 14px;
}
main .houseSec .flexBox .contentBox .textBox p {
  height: 3em;
}
main .contactSec {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 30px 0 50px;
}
main .contactSec .title-center {
  text-align: center;
  border-top: 1px solid #000;
  padding: 0;
  padding-top: 80px;
  margin: 0 auto;
  max-width: 700px;
}
main .contactSec .title-center img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
main .contactSec .title-center h6 {
  margin: 35px 0;
}
main .contactSec .title-center .link-btn {
  margin: 70px auto;
  border: 1px solid #000;
  border-radius: 40px;
  font-style: italic;
  color: #242f40;
}
main .contactSec .title-center .link-btn:hover {
  background-color: #242f40;
  color: #edb558;
}
main .contactSec .title-center .arrow {
  position: relative;
  display: inline-block;
  /* 讓圓點能定位 */
  z-index: 1;
  font-size: 20px;
  font-style: normal;
}
main .contactSec .title-center .arrow::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #edb558;
  border-radius: 50%;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}
main .contactSec .box {
  height: 300px;
}

.contactBottom {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 auto;
  row-gap: 40px;
}
.contactBottom .contLogo {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  align-items: center;
}
.contactBottom .contLogo img {
  max-width: 150px;
  height: auto;
}
.contactBottom .contText {
  margin: 0 auto;
  max-width: 300px;
}
.contactBottom .contText h3 {
  margin: 10px 0;
  color: #242f40;
}
.contactBottom .contText h4 {
  color: #f9c158;
  font-weight: 800;
  font-style: italic;
  margin: 10px 0;
}
.contactBottom .contText p {
  margin: 10px 0;
}
.contactBottom .contText .imgBox {
  display: flex;
  gap: 15px;
}
.contactBottom .contText .imgBox img {
  width: 40px;
}

footer {
  background-color: #242f40;
  color: #fff;
  line-height: 3em;
  text-align: center;
  font-size: 14px;
}

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: 99;
}
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 .contentBox {
  padding: 30px 0;
}
main .aboutPage .contentBox .about-intro {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 10px;
  margin: 10px auto;
}
main .aboutPage .contentBox .about-intro h3 {
  font-size: 40px;
  color: #242f40;
  font-style: italic;
}
main .aboutPage .contentBox .about-intro img {
  width: 60%;
  margin-bottom: 40px;
  max-width: 200px;
}
main .aboutPage .contentBox .about-intro h6 {
  margin: 5px 0;
  font-weight: normal;
}
main .aboutPage .contentBox .about-content {
  padding: 30px 0;
  margin: 60px 0;
}
main .aboutPage .contentBox .about-content img {
  margin: 20px auto;
}
main .aboutPage .contentBox .about-content .textBox {
  margin: 10px auto;
  padding: 0 10px;
}
main .aboutPage .contentBox .about-content .textBox img {
  width: 80%;
  max-width: 350px;
  margin-bottom: 20px;
}
main .aboutPage .contentBox .about-content .textBox h6 {
  margin: 10px 0;
  font-weight: normal;
}
main .aboutPage .contentBox .about-features {
  margin: 50px auto;
}
main .aboutPage .contentBox .about-features .flexBox {
  margin: 30px 0 40px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  align-items: end;
  row-gap: 10px;
}
main .aboutPage .contentBox .about-features .flexBox .content {
  padding: 0 0 10px;
}
main .aboutPage .contentBox .about-features .flexBox .content img {
  width: 50%;
  margin-bottom: 10px;
  max-width: 120px;
}
main .aboutPage .contentBox .about-features .flexBox .content .textBox {
  padding: 0 20px;
  text-align: center;
  height: 5em;
}
main .aboutPage .contentBox .about-features .flexBox .content .textBox h5 {
  color: #a15904;
  font-size: 14px;
}
main .aboutPage .contentBox .about-phone {
  text-align: center;
  padding: 80px 10px;
  margin: 10px auto;
  background-image: url(../images/process-bg.jpg);
}
main .aboutPage .contentBox .about-phone img {
  width: 85%;
  max-width: 450px;
  height: auto;
}
main .aboutPage .contentBox .about-phone h6 {
  margin: 20px 0;
}
main .aboutPage .contentBox .about-phone .link-btn {
  margin: 20px auto;
  border: 1px solid #000;
  border-radius: 40px;
  font-style: italic;
}
main .aboutPage .contentBox .about-phone .link-btn:hover {
  background-color: #242f40;
  color: #edb558;
}
main .aboutPage .contentBox .about-phone .arrow {
  position: relative;
  display: inline-block;
  /* 讓圓點能定位 */
  z-index: 1;
  font-size: 20px;
  font-style: normal;
}
main .aboutPage .contentBox .about-phone .arrow::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #edb558;
  border-radius: 50%;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}

main .servicePage .contentBox {
  padding: 60px 0;
  line-height: 1.8;
}
main .servicePage .contentBox .title {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}
main .servicePage .contentBox .title img {
  width: 50%;
  max-width: 250px;
  margin-bottom: 25px;
}
main .servicePage .contentBox .title h6 {
  line-height: 1.8em;
  font-weight: normal;
}
main .servicePage .contentBox .service-item {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  row-gap: 30px;
}
main .servicePage .contentBox .service-item .service-img {
  text-align: center;
  max-width: 1000px;
}
main .servicePage .contentBox .service-item .service-img img {
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
main .servicePage .contentBox .service-item .service-text {
  max-width: 400px;
  margin: 0 auto;
}
main .servicePage .contentBox .service-item .service-text h2 {
  font-size: 40px;
  font-style: italic;
  color: #a15904;
}
main .servicePage .contentBox .service-item .service-text h3 {
  color: #a15904;
  margin-bottom: 12px;
}
main .servicePage .contentBox .service-item .service-text p {
  margin-bottom: 10px;
  color: #555;
}
main .servicePage .contentBox .service-item .service-text ul {
  list-style: disc;
  color: #333;
  margin-top: 10px;
}
main .servicePage .contentBox .service-item .service-text ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

main .newPage .product-container {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 60px;
}
main .newPage .product-container .product-sidebar {
  margin: 1em;
  padding: 10px;
  padding-left: 0;
}
main .newPage .product-container .product-sidebar hr {
  width: 9em;
  border: 1px solid #4974a5;
  opacity: 1;
}
main .newPage .product-container .product-sidebar h3 {
  margin: 0.5em 0;
  color: #242f40;
}
main .newPage .product-container .product-sidebar ul li {
  line-height: 2em;
  padding: 10px;
  cursor: pointer;
  position: relative;
}
main .newPage .product-container .product-sidebar ul li .dropdown-content {
  display: none;
}
main .newPage .product-container .product-sidebar ul li.filter-btn:hover,
main .newPage .product-container .product-sidebar ul li.filter-btn.active,
main .newPage .product-container .product-sidebar ul li.aside-dropdown:hover {
  color: #edb558;
  font-weight: 700;
}
main .newPage .product-container .product-sidebar ul li.filter-btn:hover::before,
main .newPage .product-container .product-sidebar ul .active::before,
main .newPage .product-container .product-sidebar ul li.aside-dropdown:hover::before {
  content: "|";
  width: 1em;
  background-color: #edb558;
  margin-right: 10px;
}
main .newPage .product-container .product-sidebar ul li.filter-btn::before,
main .newPage .product-container .product-sidebar ul li.aside-dropdown::before {
  content: "|";
  transform: scaleX(0);
  transform-origin: left;
  display: inline-block;
  margin-right: 10px;
  color: #edb558;
  transition: transform 0.5s ease;
}
main .newPage .product-container .product-sidebar ul li.filter-btn:hover::before,
main .newPage .product-container .product-sidebar ul li.filter-btn.active::before,
main .newPage .product-container .product-sidebar ul li.aside-dropdown:hover::before {
  transform: scaleX(1);
}
main .newPage .product-container .product-sidebar ul li.filter-btn:hover a {
  color: #fff;
}
main .newPage .product-container .product-sidebar ul .dropdown-toggle:hover ul {
  display: block;
}
main .newPage .product-container .product-sidebar ul li.dropdown-toggle::after {
  content: none;
  /* 或刪除整個這段 */
}
main .newPage .product-container .product-sidebar ul .submenu {
  display: none;
  padding-left: 20px;
}
main .newPage .product-container .product-sidebar ul .submenu a {
  color: #333;
}
main .newPage .product-container .product-sidebar ul a:hover {
  color: #edb558;
}
main .newPage .product-container .product-sidebar ul .aside-dropdown .toggle-btn {
  position: absolute;
  right: 50px;
  top: 25px;
  transform: translateY(-50%);
  font-weight: bold;
  cursor: pointer;
}
main .newPage .product-container .row {
  display: flex;
  justify-content: start;
}
main .newPage .product-container .row .product-item {
  margin: 0;
  padding: 0 5px;
}
main .newPage .product-container .row .product-item .image-wrapper {
  position: relative;
  overflow: hidden;
}
main .newPage .product-container .row .product-item .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* 按鈕樣式 */
}
main .newPage .product-container .row .product-item .image-wrapper .overlay .detail-btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s;
}
main .newPage .product-container .row .product-item .image-wrapper .overlay .detail-btn:hover {
  color: #edb558;
  background-color: #242f40;
  font-weight: 600;
  transition: all 0.5s ease;
}
main .newPage .product-container .row .product-item .image-wrapper:hover .overlay,
main .newPage .product-container .row .product-item .image-wrapper:active .overlay {
  opacity: 1;
}
main .newPage .product-container .row .product-card:hover {
  background-color: transparent;
}
main .newPage .product-container .row .product-card:hover h5,
main .newPage .product-container .row .product-card:hover p {
  color: #4974a5;
}
main .newPage .product-container .row .title {
  padding: 3px 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  width: 100%;
}
main .newPage .product-container .row .card-des {
  padding: 0 3px 0 7px;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #666666;
}
main .newPage .product-container .row .product-item:nth-of-type(2n) .title {
  padding: 3px 0;
  padding-right: 3px;
}
main .newPage .product-container .row .product-item:nth-of-type(2n) .card-des {
  padding: 0;
  padding-right: 3px;
}
main .newPage .product-container .row .price {
  font-weight: normal;
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.5em;
}
main .newPage .product-container .row .price span {
  font-size: 15px;
}
main .newPage .product-container .row .price .onSale {
  color: #f11717;
}
main .newPage .product-container .row .price:has(.onSale:not(:empty)) .default {
  text-decoration: line-through;
}
main .newPage .product-container .row-gap-5 {
  row-gap: 3rem;
}

main .articlePage {
  background-image: url(../images/article-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 70%;
  background-position: bottom;
}
main .articlePage .articleBox {
  margin: 20px auto;
}
main .articlePage .articleBox .articlecontent {
  padding-top: 60px;
}
main .articlePage .link-button {
  display: flex;
  justify-content: flex-start;
  margin: 10px auto;
  padding: 20px;
  gap: 20px;
  max-width: 850px;
}
main .articlePage .link-button .link-btn {
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #242f40;
  border: 1px solid #000;
  width: 9em;
}
main .articlePage .link-button .link-btn:hover {
  background-color: #242f40;
  color: #edb558;
}
main .articlePage .link-button .arrow {
  position: relative;
  display: inline-block;
  /* 讓圓點能定位 */
  z-index: 1;
  font-size: 20px;
  font-style: normal;
}
main .articlePage .link-button .arrow::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #edb558;
  border-radius: 50%;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}
main .articlePage .contactBox {
  background-color: #242f40;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
main .articlePage .contactBox h3 {
  margin: 25px 0;
}
main .articlePage .contactBox a:hover {
  color: #edb558;
}

main .faqPage .qaAccordin {
  margin: 20px auto;
  max-width: 900px;
  padding-top: 60px;
}
main .faqPage .qaAccordin .mainTitle-center {
  margin-bottom: 20px;
}
main .faqPage .qaAccordin .qa-item {
  border: 1px solid #242f40;
  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: #000;
  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: #242f40;
  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: #242f40;
  color: #fff;
}
main .faqPage .qaAccordin .qa-item .question.active .icon {
  background-color: #fff;
  color: #242f40;
}
main .faqPage .qaAccordin .qa-item .answer {
  display: none;
  padding: 16px;
  padding-top: 0;
  padding-left: 25px;
  background-color: #242f40;
  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 .albumPage .contentBox {
  width: 100%;
  padding: 60px 0 30px;
}
main .albumPage .contentBox .textBox {
  margin: 10px auto 20px;
  text-align: center;
  max-width: 900px;
}
main .albumPage .contentBox .textBox h6 {
  font-weight: normal;
}
main .albumPage .contentBox .rowBox {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
main .albumPage .contentBox .rowBox .picBox {
  padding: 30px 40px;
  background-color: #fff;
  box-shadow: 0px 0px 8px #dddddd;
  margin: 0 auto;
  border-radius: 10px;
}
main .albumPage .contentBox .rowBox .picBox .text {
  text-align: center;
  max-height: 200px;
  overflow-y: hidden;
}
main .albumPage .contentBox .rowBox .picBox .text h5 {
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .albumPage .contentBox .rowBox .picBox .text p {
  margin: 5px 0;
  color: gray;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .albumPage .contentBox .rowBox .picBox a:hover h5,
main .albumPage .contentBox .rowBox .picBox a:hover p {
  color: #edb558;
}

main .photoPage {
  background-image: url(../images/article-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 70%;
  background-position: bottom;
}
main .photoPage .contentBox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
main .photoPage .contentBox .title {
  margin: 0 auto 20px;
  padding-bottom: 30px;
  max-width: 900px;
  border-bottom: 1px solid #666666;
}
main .photoPage .contentBox .title h3 {
  margin: 15px 0;
}
main .photoPage .contentBox .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
  max-width: 1200px;
  margin: 10px auto 30px;
  /* hover / focus 狀態顯示效果（鍵盤或手機點擊一樣會觸發 focus-within） */
  /* 圖片可加一點亮度變化（不動 transform 就不會壓過你的置中） */
}
main .photoPage .contentBox .content .picBox {
  padding: 10px;
  position: relative;
  /* 讓遮罩能定位 */
  overflow: hidden;
  /* 黑色透明遮罩 */
  /* 右上角「+」 */
}
main .photoPage .contentBox .content .picBox p {
  padding: 5px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
main .photoPage .contentBox .content .picBox a:hover p {
  color: #000;
}
main .photoPage .contentBox .content .picBox .boximg1x1 img {
  transition: transform 1s ease;
  /* 變慢：1秒 */
}
main .photoPage .contentBox .content .picBox .boximg1x1::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 等同 top/right/bottom/left 全為 0 */
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  /* 不擋連結點擊 */
  z-index: 1;
}
main .photoPage .contentBox .content .picBox .boximg1x1::before {
  content: "+";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #edb558;
  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 .picBox:hover .boximg1x1::after,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1::after {
  opacity: 1;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1::before,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1::before {
  opacity: 1;
  transform: none;
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1 img {
  filter: brightness(0.85);
}
main .photoPage .contentBox .content .picBox:hover .boximg1x1 img,
main .photoPage .contentBox .content .picBox:focus-within .boximg1x1 img {
  transform: translate(-50%, -50%) scale(1.2);
  /* 注意：合併在一起 */
}

/* 無障礙：若使用者偏好減少動效，僅保留淡入 */
@media (prefers-reduced-motion: reduce) {
  .boximg1x1 img {
    transition: none;
  }
  .boximg1x1::before,
  .boximg1x1::after {
    transition: opacity 0.2s linear;
  }
}
main .videoPage .content {
  padding: 60px 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
main .videoPage .content .mediavedio {
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px #ddd;
  padding-bottom: 20px;
}
main .videoPage .content .mediavedio .boximg5x4 {
  border-radius: 10px 10px 0 0;
}
main .videoPage .content .mediavedio .boximg5x4::before {
  content: "\f167";
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  z-index: 2;
  transition: all 0.5s ease;
}
main .videoPage .content .mediavedio .boximg5x4::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
main .videoPage .content .mediavedio p {
  padding: 10px 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.75em;
  height: 4em;
}
main .videoPage .content .mediavedio:hover .boximg5x4::before {
  color: #f11717;
  transform: translate(-50%, -50%) scale(1.2);
}

main .contactPage .contentBox {
  padding: 60px 0;
  line-height: 1.8;
}
main .contactPage .contentBox .title {
  max-width: 910px;
  margin: 0 auto 50px;
  text-align: center;
  padding-bottom: 40px;
}
main .contactPage .contentBox .title img {
  width: 80%;
  max-width: 350px;
  margin-bottom: 25px;
}
main .contactPage .contentBox .title h6 {
  line-height: 1.8em;
  font-weight: normal;
}
main .contactPage .contentBox .contactArea {
  background-color: #eee;
  color: #242f40;
  text-align: center;
  padding: 80px 0;
}
main .contactPage .contentBox .contactArea h3 {
  margin: 25px 0;
}
main .contactPage .contentBox .contactArea .rowBox {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
main .contactPage .contentBox .contactArea .rowBox h4 {
  font-weight: 400;
}
main .contactPage .contentBox .contactArea .rowBox i {
  font-size: 30px;
  margin: 20px 0;
}
main .contactPage .contentBox .content {
  margin: 30px auto;
  background-image: url(../images/graybg.jpg);
  background-size: 70% 20%;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 40px 0;
}
main .contactPage .contentBox .content .textBox {
  margin: 10px auto;
}
main .contactPage .contentBox .content .textBox .text {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: flex-start;
  text-align: start;
}
main .contactPage .contentBox .content .textBox .text .title-h5 {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  text-align: start;
}
main .contactPage .contentBox .content .textBox .text .title-h5 span {
  line-height: 40px;
  font-size: inherit;
  line-height: 1;
}
main .contactPage .contentBox .content .textBox .iconBox {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
main .contactPage .contentBox .content .textBox .iconBox i {
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: rgba(36, 47, 64, 0.8352941176);
}
main .contactPage .contentBox .content .textBox .iconBox i:hover {
  background-color: #242f40;
  color: #edb558;
  transform: scale(1.3);
  transition: all 0.8s ease;
}

@media only screen and (min-width: 400px) {
  aside {
    right: 10px;
    transform: scale(1);
  }
}
@media only screen and (min-width: 768px) {
  div.carouselSlide .carousel-control-prev-icon,
  div.carouselSlide .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  main .aboutSec .contentBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 750px;
  }
  main .aboutSec .contentBox .link-button {
    gap: 20px;
  }
  main .aboutSec .contentBox .link-button .link-btn {
    gap: 10px;
    font-size: 15px;
  }
  main .serviceSec .flexBox {
    max-width: 800px;
    margin: 0 auto;
  }
  main .processSec .flexBox {
    gap: 20px;
  }
  main .processSec .flexBox .contentBox p {
    padding: 0 30px;
  }
  main .caseSec .flexBox {
    max-width: 800px;
    margin: 0 auto;
  }
  main .houseSec .flexBox {
    max-width: 800px;
    margin: 0 auto;
  }
  main .houseSec .flexBox .contentBox .textBox {
    padding: 0 20px;
  }
  main .houseSec .flexBox .contentBox .textBox h5 {
    font-size: 18px;
  }
  .contactBottom {
    flex-direction: row;
    justify-content: center;
  }
  .contactBottom .contLogo {
    margin: 0;
  }
  .contactBottom .contText {
    margin: 0;
    max-width: 800px;
    padding: 0 30px;
  }
  .contactBottom .contText h6 {
    font-size: 16px;
  }
  footer {
    font-size: 16px;
  }
  main .aboutPage .contentBox .about-features .flexBox {
    justify-content: center;
  }
  main .aboutPage .contentBox .about-features .flexBox .content .textBox {
    padding: 0 40px;
  }
  main .aboutPage .contentBox .about-features .flexBox .content .textBox h5 {
    font-size: 18px;
  }
  main .newPage .product-container {
    display: block;
  }
  main .newPage .product-container .product-sidebar {
    max-width: 400px;
  }
  main .newPage .product-container .product-sidebar li {
    font-size: 18px;
  }
  main .newPage .product-container .row {
    justify-content: space-between;
  }
  main .newPage .product-container .row .product-item {
    padding: 0 20px;
  }
  main .newPage .product-container .row .title {
    font-size: 18px;
  }
  main .newPage .product-container .row .card-des {
    font-size: 14px;
  }
  main .newPage .product-container .row .price {
    line-height: 1.5em;
  }
  main .newPage .product-container .row .price span {
    font-size: 18px;
  }
  main .albumPage .contentBox .rowBox {
    justify-content: flex-start;
  }
  main .albumPage .contentBox .rowBox .picBox {
    margin: 10px;
    flex: 0 0 calc(50% - 20px);
    /* 兩欄布局，扣掉間距 */
  }
  main .albumPage .contentBox .rowBox img {
    margin-bottom: 1em;
  }
  main .videoPage .content .mediavedio {
    margin: 10px;
    flex: 0 0 calc(50% - 20px);
  }
  main .newalbumPage .contentBox .rowBox {
    justify-content: space-between;
  }
  main .newalbumPage .contentBox .rowBox .content {
    padding: 0 20px;
  }
  main .contactPage .contentBox .content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 40% 45%;
    background-position: center bottom;
  }
  main .contactPage .contentBox .content .textBox {
    padding-left: 40px;
    margin: 10px 0;
  }
  main .contactPage .contentBox .content .textBox .iconBox {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 992px) {
  main .aboutSec {
    flex-direction: row;
  }
  main .aboutSec .picBox {
    align-items: center;
    display: flex;
  }
  main .aboutSec .contentBox {
    margin: 0;
    padding: 0;
    padding-left: 40px;
    padding-right: 60px;
  }
  main .aboutSec .contentBox .link-button {
    justify-content: start;
    gap: 20px;
  }
  main .serviceSec .flexBox {
    max-width: 1300px;
  }
  main .serviceSec .flexBox .contentBox {
    max-width: 400px;
  }
  main .phoneSec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
  }
  main .phoneSec img {
    width: 70%;
    max-width: 350px;
  }
  main .processSec {
    padding-bottom: 100px;
  }
  main .processSec .flexBox {
    gap: 0;
  }
  main .processSec .flexBox .contentBox {
    padding: 0 20px;
  }
  main .caseSec .flexBox {
    max-width: 1300px;
  }
  main .caseSec .flexBox .contentBox {
    max-width: 400px;
  }
  main .houseSec .flexBox {
    max-width: 1300px;
  }
  main .houseSec .flexBox .contentBox {
    max-width: 400px;
  }
  main .houseSec .flexBox .contentBox .textBox p {
    padding: 0 10px;
  }
  main .aboutPage .contentBox .about-content {
    display: flex;
  }
  main .aboutPage .contentBox .about-content img {
    height: auto;
  }
  main .aboutPage .contentBox .about-content img,
  main .aboutPage .contentBox .about-content .textBox {
    margin: 10px 0;
  }
  main .aboutPage .contentBox .about-features {
    margin: 80px auto;
    max-width: 1300px;
    grid-template-columns: repeat(4, 1fr);
  }
  main .servicePage .contentBox .service-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  main .servicePage .contentBox .service-item .service-text {
    margin: 0;
    max-width: 500px;
    padding-right: 55px;
  }
  main .servicePage .contentBox .service-item .service-text ul li {
    font-size: 16px;
  }
  main .servicePage .contentBox .service-item.reverse {
    flex-direction: row-reverse;
  }
  main .servicePage .contentBox .service-item.reverse .service-text {
    padding-left: 55px;
    padding-right: 0;
  }
  main .newPage .product-container {
    display: flex;
  }
  main .newPage .product-container .product-sidebar {
    max-width: 250px;
  }
  main .newPage .product-container .row {
    justify-content: start;
  }
  main .newPage .product-container .row .product-item {
    padding: 0 20px;
  }
  main .newPage .product-container .row .price br {
    display: none;
  }
  main .articlePage .link-button .link-btn {
    font-size: 18px;
  }
  main .articlePage .contactBox .rowBox {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 20px auto;
  }
  main .albumPage .contentBox .textBox {
    max-width: 1200px;
  }
  main .albumPage .contentBox .rowBox {
    max-width: 1400px;
  }
  main .albumPage .contentBox .rowBox .picBox {
    margin: 20px;
    flex: 0 0 calc(33.333% - 40px);
    /* 兩欄布局，扣掉間距 */
  }
  main .videoPage .content .mediavedio {
    margin: 20px;
    flex: 0 0 calc(33.333% - 40px);
  }
  main .contactPage .contentBox .contactArea h3 {
    font-size: 30px;
  }
  main .contactPage .contentBox .contactArea .rowBox {
    flex-direction: row;
    justify-content: space-around;
    max-width: 900px;
    margin: 20px auto;
  }
  main .contactPage .contentBox .content .textBox .iconBox {
    gap: 20px;
  }
  main .contactPage .contentBox .content .textBox .iconBox i {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  main .aboutSec .picBox img {
    max-width: 1000px;
  }
  main .aboutSec .contentBox {
    margin-left: 50px;
  }
  main .contactSec .box {
    height: 600px;
  }
  .contactBottom {
    justify-content: center;
    margin: 20px auto 0;
    max-width: 1450px;
  }
  .contactBottom .contLogo {
    align-items: flex-start;
    padding-top: 10px;
  }
  .contactBottom .contLogo img {
    max-width: 200px;
  }
  main .aboutPage .contentBox .about-content {
    gap: 50px;
    align-items: center;
  }
  main .servicePage .contentBox .service-item {
    gap: 40px;
  }
  main .servicePage .contentBox .service-item .service-text {
    max-width: 600px;
  }
  main .newPage .product-list {
    gap: 10px;
  }
  main .newPage .product-container .row {
    gap: 0;
    row-gap: 3rem;
  }
}
@media only screen and (min-width: 1920px) {
  main .aboutSec .contentBox {
    margin-left: 80px;
  }
  main .processSec .flexBox .contentBox {
    padding: 0 40px;
  }
  main .houseSec .flexBox .contentBox .textBox p {
    padding: 0 25px;
  }
}/*# sourceMappingURL=style.css.map */