@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 {
  max-width: 100%;
  vertical-align: bottom;
}

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

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
  line-height: 2em;
}

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

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

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

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

a:hover {
  color: #0073c5;
}

.fcwhite {
  color: #fff;
}

.fcblack {
  color: #000;
}

.fclightblue {
  color: #0073c5;
}

.fcdarkblue {
  color: #00417d;
}

.fcyellow {
  color: #ffc700;
}

.fcgray {
  color: #708293;
}

.fcdarkpurple {
  color: #273460;
}

.bgdarkblue {
  background-color: #00417d;
}

.bglightblue {
  background-color: #2b5088;
}

.bglightgray {
  background-color: #f6f6f6;
}

.bgwhite {
  background-color: #fff;
}

.mainTitle-center {
  margin: 20px 0;
  text-align: center;
  padding: 0 10px;
}
.mainTitle-center img {
  width: 100%;
  align-items: center;
  max-width: 500px;
}
.mainTitle-center h3,
.mainTitle-center h5 {
  margin-bottom: 10px;
  color: #002e5b;
}
.mainTitle-center p {
  margin: 10px;
}

.btn {
  width: 100%;
  font-size: 16px;
  display: flex;
  margin-top: 20px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.btn button {
  left: 0;
  width: 7em;
  height: 3.5em;
  color: #000;
  border: none;
  background-color: #fff;
}
.btn button:hover {
  background-color: #2b5088;
  color: #FFF;
}

.pageAll {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 25px auto;
}
.pageAll .page {
  width: 40px;
  height: 40px;
  color: #000;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  justify-content: center;
  line-height: 40px;
  cursor: pointer;
  font-size: 18px;
  margin: 0 10px;
}
.pageAll .page i {
  vertical-align: middle;
}
.pageAll .page p {
  width: 100%;
  height: 100%;
  line-height: 40px;
}
.pageAll .page:hover,
.pageAll .page.active {
  background-color: #00417d;
  color: #fff;
  font-weight: 500;
}

.container {
  margin-top: 20px;
}
.container .breadcrumb {
  padding-left: 20px;
}
.container .breadcrumb .breadcrumb-item.active a {
  color: #00417d;
}

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

.articlecontent {
  margin: 0 auto;
  padding: 20px;
}
.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: 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%;
  }
}
@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%;
  }
  main section.container {
    margin-left: 150px;
  }
  main section.container .breadcrumb {
    padding-left: 50px;
  }
}
@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%;
  }
  main section.container {
    margin-left: 350px;
  }
}
@media only screen and (min-width: 1700px) {
  .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%;
  }
  main section.container {
    margin-left: 350px;
  }
}
main .aboutSec {
  width: 100%;
}
main .aboutSec .pic,
main .aboutSec .text {
  padding: 30px;
}
main .aboutSec .pic {
  padding-bottom: 0;
}
main .aboutSec .pic img {
  width: 200px;
}
main .aboutSec .text img {
  width: 250px;
}
main .aboutSec .text .iconRow {
  padding-top: 10px;
}
main .aboutSec .text .iconRow .iconBox {
  display: flex;
  margin-bottom: 10px;
}
main .aboutSec .text .iconRow .iconBox img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
main .aboutSec .text .iconRow .iconBox .iconText p {
  margin: 0;
}
main .aboutSec .titlewithicon {
  display: flex;
}
main .aboutSec .titlewithicon img {
  width: auto;
  height: 30px;
  margin-right: 5px;
}
main .serviceSec .content {
  background-size: cover;
  background-position: center;
}
main .serviceSec .content .text .textBox {
  padding: 30px 20px;
}
main .serviceSec .content .text .textBoxTop img {
  width: auto;
  height: 40px;
}
main .serviceSec .content .text hr {
  opacity: 1;
  border: 1px solid #fff;
  margin: 0;
}
main .serviceSec .service1 {
  background-image: url(../images/servicebg1.jpg);
}
main .serviceSec .service2 {
  background-image: url(../images/servicebg2.jpg);
}
main .serviceSec .service3 {
  background-image: url(../images/servicebg3.jpg);
}
main .serviceSec .service4 {
  background-image: url(../images/servicebg4.jpg);
}
main .serviceSec .service5 {
  background-image: url(../images/servicebg5.jpg);
}
main .service2Sec {
  width: 100%;
  padding: 20px 0;
}
main .service2Sec .flexBox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
}
main .service2Sec .flexBox .contentBox {
  padding: 0 10px 10px;
}
main .service2Sec .flexBox .contentBox img {
  width: 100%;
  margin-bottom: 10px;
}
main .service2Sec .flexBox .contentBox .textBox {
  padding: 0 10px;
  text-align: left;
}
main .caseSec {
  width: 100%;
  background-color: #eef2f9;
  padding: 30px 0;
}
main .caseSec .title {
  padding: 10px 20px;
}
main .caseSec .title img {
  align-items: center;
  width: 250px;
  margin: 20px 0;
}
main .caseSec .caseContentOwl {
  padding: 10px 40px 20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
main .caseSec .caseContentOwl .casePic {
  width: 80%;
  margin: 0 auto;
}
main .caseSec .caseContentOwl .casePic .boximg4x5 {
  border-radius: 40px;
}
main .caseSec .caseContentOwl .casePic h6 {
  margin: 10px 0;
}
main .caseSec .caseContentOwl .owl-carousel {
  position: relative;
}
main .caseSec .caseContentOwl .owl-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
}
main .caseSec .caseContentOwl .owl-carousel .owl-item {
  max-width: 400px;
}
main .caseSec .caseContentOwl .owl-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-direction: row !important;
  position: relative;
}
main .caseSec .caseContentOwl .owl-dots .owl-dot {
  display: inline-block;
}
main .caseSec .caseContentOwl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: block;
  border-radius: 50%;
}
main .caseSec .caseContentOwl .owl-dots .owl-dot.active span {
  background: #333;
}
main .faqSec {
  background-color: #eef2f9;
  background-image: url(../images/faqbg.jpg);
  background-size: 100% 70%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 20px 0;
}
main .faqSec .qaAccordin {
  margin: 30px auto;
}
main .faqSec .qaAccordin .mainTitle-center {
  margin-bottom: 40px;
}
main .faqSec .qaAccordin .mainTitle-center img {
  width: 250px;
}
main .faqSec .qaAccordin .qa-item {
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
main .faqSec .qaAccordin .qa-item .question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  padding: 30px;
  color: #fff;
  background-color: #0073c5;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
main .faqSec .qaAccordin .qa-item .question .icon {
  width: 30px;
  height: 30px;
  font-weight: 700;
  margin-right: 10px;
  background-color: #fff;
  color: #0073c5;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background-color 0.3s, color 0.3s;
}
main .faqSec .qaAccordin .qa-item .question.active {
  background-color: #fff;
  color: #0073c5;
}
main .faqSec .qaAccordin .qa-item .question.active .icon {
  background-color: #ebebeb;
  color: #0073c5;
}
main .faqSec .qaAccordin .qa-item .answer {
  display: none;
  padding: 16px;
  padding-top: 0;
  padding-left: 40px;
  background-color: #fff;
  color: #0073c5;
  transition: all 0.3s;
}
main .faqSec .qaAccordin .qa-item .answer.show {
  display: block;
}
main .contactSec {
  background-color: #eef2f9;
  padding: 20px 0;
}
main .contactSec .textBox {
  padding: 10px 0;
  margin: 0 auto;
}
main .contactSec .textBox .textLeft {
  margin: 0 auto;
}
main .contactSec .textBox .textLeft img {
  width: 300px;
  margin-bottom: 10px;
}
main .contactSec .textBox .textLeft p {
  margin: 0;
}
main .contactSec .textBox .textRight {
  margin: 10px auto;
}
main .contactSec .textBox .textRight img {
  width: 300px;
}
main .contactSec .bottomBox {
  margin: 10px auto;
  padding: 20px 0;
}
main .contactSec .bottomBox .iconBox {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  padding: 15px 10px;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  margin: 10px auto;
}
main .contactSec .bottomBox .iconBox .imgBox {
  text-align: center;
}
main .contactSec .bottomBox .iconBox .imgBox img {
  width: auto;
  height: 80px;
}
main .contactSec .bottomBox .iconBox .imgBox .icon1 {
  height: 70px;
}
main .contactSec .bottomBox .iconBox h6 {
  margin: 0;
}

aside {
  display: flex;
  position: fixed;
  flex-direction: column;
  right: 0;
  bottom: 100px;
  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;
}

.contactBottomSec .content {
  margin: 0 auto;
  padding: 20px 0;
  align-items: center;
  text-align: center;
}
.contactBottomSec .content .titleBox {
  margin: 10px 0;
}
.contactBottomSec .content .titleBox img {
  width: 300px;
  margin-bottom: 25px;
}
.contactBottomSec .content .titleBox .iconBox {
  text-align: center;
}
.contactBottomSec .content .titleBox .iconBox h3 {
  font-weight: 800;
  margin-bottom: 10px;
}
.contactBottomSec .content .titleBox .iconBox .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contactBottomSec .content .titleBox .iconBox .icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
}
.contactBottomSec .content .textBox p {
  text-align: center;
  color: #4d4d4d;
}
.contactBottomSec hr {
  margin: 0 auto;
  border: #000;
}
.contactBottomSec footer {
  color: #000;
  line-height: 3em;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
}

main .product-container {
  margin: 0 auto;
  overflow: hidden;
}
main .product-container .product-sidebar {
  margin: 1em;
  padding: 10px;
  padding-left: 0;
}
main .product-container .product-sidebar hr {
  width: 9em;
  border: 1px solid #002e5b;
  opacity: 1;
}
main .product-container .product-sidebar h3 {
  margin: 0.5em 0;
  color: #002e5b;
}
main .product-container .product-sidebar ul li {
  line-height: 2em;
  padding: 10px;
  cursor: pointer;
}
main .product-container .product-sidebar ul li i {
  padding-left: 1em;
}
main .product-container .product-sidebar ul li .dropdown-content {
  display: none;
}
main .product-container .product-sidebar ul li.filter-btn:hover,
main .product-container .product-sidebar ul .active {
  background-color: #002e5b;
  color: #fff;
  font-weight: 700;
}
main .product-container .product-sidebar ul .dropdown-toggle:hover ul {
  display: block;
}
main .product-container .product-sidebar ul li.dropdown-toggle::after {
  content: none;
  /* 或刪除整個這段 */
}
main .product-container .product-list {
  margin-top: 1em;
  margin: 0 auto;
}
main .product-container .product-list .product-item {
  margin: 1em 0;
}
main .product-container .product-list .product-item h6 {
  margin-top: 1em;
  white-space: nowrap;
  /* 不允許換行 */
  overflow: hidden;
  /* 超出寬度的文字隱藏 */
  text-overflow: ellipsis;
  /* 顯示省略符號 "..." */
}
main .product-container .product-list .product-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
main .product-container .product-list .product-item .image-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}
main .product-container .product-list .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.3s ease;
  /* 按鈕樣式 */
}
main .product-container .product-list .product-item .image-wrapper .overlay .detail-btn {
  background-color: #002e5b;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}
main .product-container .product-list .product-item .image-wrapper .overlay .detail-btn:hover {
  background-color: #2b5088;
}
main .product-container .product-list .product-item .image-wrapper:hover .overlay,
main .product-container .product-list .product-item .image-wrapper:active .overlay {
  opacity: 1;
}

main .casePage .product-container .product-list .product-item h4 {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background-color: #00417d;
}

main .casedetailPage .product-container .product-list .product-item h6 {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
main .casedetailPage .product-container .product-list .product-item p {
  overflow: visible;
  text-overflow: unset;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
}

main .servicePage {
  width: 100%;
}
main .servicePage .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .content .contentBox h3 {
  text-align: center;
  margin: 10px 0;
}
main .servicePage .content .contentBox h6 {
  font-weight: normal;
  padding: 20px 0;
}
main .servicePage .content .contentBox .photoBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .servicePage .content .contentBox .photoBox .imageBox {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
main .servicePage .content .contentBox .photoBox .imageBox a {
  display: block;
  position: relative;
}
main .servicePage .content .contentBox .photoBox .imageBox a .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* 半透明黑色遮罩 */
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* 讓 fancybox 點擊正常運作 */
}
main .servicePage .content .contentBox .photoBox .imageBox .iconZoom {
  font-size: 2rem;
  color: #fff;
}
main .servicePage .content .contentBox .photoBox .imageBox:hover .overlay {
  opacity: 1;
}

main .mediaPage .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}
main .mediaPage .content .mediavedio iframe {
  width: 100%;
}
main .mediaPage .content .mediavedio p {
  padding: 0 10px;
  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;
}

main .contactPage .contactBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main .contactPage .contactBox .text {
  padding: 20px;
}
main .contactPage .contactBox .text h5 {
  background-color: #ebebeb;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
}
main .contactPage .contactBox .text p {
  line-height: 2.5em;
}
main .contactPage .contactBox .text p i {
  width: 25px;
  color: #00417d;
}
main .contactPage .contactBox .content .formBox {
  max-width: 800px;
  padding: 20px;
}
main .contactPage .contactBox .content .formBox h5 {
  background-color: #ebebeb;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
}
main .contactPage .contactBox .content .formBox .formgroup {
  margin-bottom: 1.5rem;
}
main .contactPage .contactBox .content .formBox .formgroup label {
  display: block;
  margin-bottom: 0.5rem;
}
main .contactPage .contactBox .content .formBox .formgroup label .required {
  color: red;
  margin-right: 0.25rem;
}
main .contactPage .contactBox .content .formBox .formgroup input[type=text],
main .contactPage .contactBox .content .formBox .formgroup input[type=tel],
main .contactPage .contactBox .content .formBox .formgroup textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
main .contactPage .contactBox .content .formBox .formgroup input:focus,
main .contactPage .contactBox .content .formBox .formgroup textarea:focus {
  border-color: #00417d;
  outline: none;
}
main .contactPage .contactBox .content .formBox .formgroup textarea {
  resize: vertical;
}
main .contactPage .contactBox .content .formBox .btn button[type=submit] {
  background-color: #00417d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main .contactPage .contactBox .content .formBox .btn button[type=submit]:hover {
  background-color: #f6f6f6;
  color: #0073c5;
}

@media (max-width: 767px) {
  main .aboutSec .pic img {
    width: 150px;
  }
  main .serviceSec .content .text .textBoxTop img {
    height: 25px;
  }
  main .caseSec .title img,
  main .faqSec .qaAccordin .mainTitle-center img {
    width: 200px;
  }
  main .contactSec .textBox .textLeft img {
    width: 200px;
  }
  .contactBottomSec .content .titleBox img {
    width: 230px;
  }
  .contactBottomSec .content .titleBox .iconBox h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 400px) {
  aside {
    right: 10px;
    transform: scale(1);
  }
}
@media only screen and (min-width: 768px) {
  main .aboutSec .content .text .iconRow {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  main .aboutSec .content .text .iconRow .iconBox {
    margin-right: 20px;
  }
  main .serviceSec .content {
    display: flex;
    justify-content: end;
  }
  main .serviceSec .content .text .textBoxTop {
    padding-bottom: 20px;
  }
  main .serviceSec .content .text .textBoxTop img {
    height: 50px;
  }
  main .serviceSec .contentLeft {
    justify-content: start;
  }
  main .service2Sec .flexBox {
    max-width: 800px;
    margin: 0 auto;
  }
  main .caseSec .title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
  }
  main .caseSec .title img {
    margin-right: 15px;
  }
  main .caseSec .caseContentOwl {
    padding: 20px 50px;
  }
  main .caseSec .caseContentOwl .casePic {
    width: 90%;
  }
  main .contactSec .textBox {
    display: flex;
    justify-content: space-around;
  }
  main .contactSec .textBox .textLeft {
    margin: 0;
  }
  main .contactSec .textBox .textRight {
    padding-left: 10px;
    margin: 0;
  }
  main .contactSec .bottomBox {
    display: flex;
    justify-content: center;
  }
  main .contactSec .bottomBox .iconBox {
    margin: 10px;
  }
  main .product-container {
    display: flex;
  }
  main .product-container .product-sidebar {
    margin: 1em 10px 1em 2.5em;
    max-width: 200px;
  }
  main .product-container .product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: space-between;
  }
  main .product-container .product-list .product-item .image-wrapper {
    padding: 0 30px;
  }
  main .servicePage .content .contentBox .photoBox {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    row-gap: 20px;
    margin: 20px auto;
  }
  main .servicePage .content .contentBox .photoBox .imageBox {
    padding: 0 20px;
  }
  main .contactPage .contactBox .text p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  main .aboutSec .content {
    display: flex;
    justify-content: center;
  }
  main .aboutSec .content .pic {
    text-align: right;
    padding: 50px 30px;
  }
  main .aboutSec .content .text {
    padding: 50px 30px;
    max-width: 600px;
  }
  main .serviceSec .content .text .textBox {
    padding-bottom: 50px;
  }
  main .serviceSec .content .text .textBoxTop {
    padding-top: 50px;
    padding-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    vertical-align: bottom;
  }
  main .serviceSec .content .text .textBoxTop h6 {
    margin-bottom: 0;
    white-space: nowrap;
  }
  main .service2Sec .flexBox {
    max-width: 1000px;
  }
  main .service2Sec .flexBox .contentBox {
    max-width: 400px;
  }
  main .caseSec .caseContentOwl {
    max-width: 1200px;
  }
  main .contactSec .textBox .textLeft img {
    width: 350px;
    margin-bottom: 20px;
  }
  main .contactSec .textBox .textRight img {
    width: 100%;
    max-width: 500px;
  }
  .contactBottomSec .content .titleBox {
    display: flex;
    justify-content: center;
  }
  .contactBottomSec .content .titleBox img {
    margin-bottom: 0;
  }
  .contactBottomSec .content .titleBox .iconBox {
    display: flex;
    margin-left: 40px;
  }
  .contactBottomSec .content .titleBox .iconBox h3 {
    line-height: 60px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .contactBottomSec .content .textBox {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
  }
  main .contactPage .contactBox {
    justify-content: center;
  }
  main .contactPage .contactBox .text {
    max-width: 550px;
  }
  main .contactPage .contactBox .content .formBox .formgroup {
    display: flex;
    align-items: center;
  }
  main .contactPage .contactBox .content .formBox .formgroup label {
    width: 200px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  main .contactPage .contactBox .content .formBox .formgroup input,
  main .contactPage .contactBox .content .formBox .formgroup textarea {
    flex: 1;
  }
}
@media only screen and (min-width: 1400px) {
  main .serviceSec .content .text {
    max-width: 500px;
    margin-right: 200px;
  }
  main .serviceSec .contentLeft .text {
    margin-right: 0;
    margin-left: 150px;
  }
  .contactBottomSec .content .titleBox .iconBox {
    margin-left: 100px;
  }
  .contactBottomSec .content .textBox {
    justify-content: center;
    gap: 30px;
  }
  main .product-container .product-list {
    justify-content: center;
  }
  main .aboutSec.nobg .text {
    padding-top: 30px;
    max-width: 650px;
  }
}/*# sourceMappingURL=style.css.map */