:root {
  --banner-ratio-720: calc(100vw * (720 / 720)); /* 預設比例 */
  --banner-ratio-1024: calc(100vw * (720 / 1024));
  --banner-ratio-1440: calc(100vw * (624 / 1440));
  --banner-ratio-1280: calc(100vw * (624 / 1280));
  --banner-ratio-1920: calc(100vw * (624 / 1920));

  --ab-bg-1024: calc(100vw * (512 / 1024));
  --ab-bg-1440: calc(100vw * (720 / 1440));
  --ab-bg-1280: calc(100vw * (624 / 1280));
  --ab-bg-1920: calc(100vw * (720 / 1920));

  --pro-bg-1024: calc(100vw * (720 / 1024));
  --pro-bg-1440: calc(100vw * (1200 / 1440));
  --pro-bg-1280: calc(100vw * (1080 / 1280));
  --pro-bg-1920: calc(100vw * (1200 / 1920));
}

body,
html {
  font-family: "微軟正黑體", "Noto Sans TC", sans-serif !important;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "微軟正黑體", "Noto Sans TC", sans-serif !important;
}

p {
  color: #71706e;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* common */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #878787;
  background-image: url(../images/00-hp/bg.jpg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
}
.loading {
  font-size: 38px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  span {
    display: inline-block;
    margin: 0 -0.05em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .loading {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .loading {
    font-size: 16px;
  }
}
/* code #6 */
.loading06 {
  span {
    position: relative;
    color: rgba(#000, 0.2);
    &::after {
      position: absolute;
      top: 0;
      left: 0;
      content: attr(data-text);
      color: #fff;
      opacity: 0;
      transform: rotateY(-90deg);
      animation: loading06 4s infinite;
    }
    @for $i from 1 through 6 {
      &:nth-child(#{$i + 1})::after {
        animation-delay: #{$i * 0.2}s;
      }
    }
  }
}
@keyframes loading06 {
  0%,
  75%,
  100% {
    transform: rotateY(-90deg);
    opacity: 0;
  }
  25%,
  50% {
    transform: rotateY(0);
    opacity: 1;
  }
}

/* .nav-dropdown {
    border-top: 5px solid #06aed0 !important;
    background: white !important;
  }

  @media (max-width: 992px) {
    .nav-dropdown {
      width: max-content !important;
      border-left: unset;
      border-right: unset;
      border-bottom: unset;
    }
  }

  @media (min-width: 992px) {
    .nav-dropdown {
      border-radius: 10px !important;
    }
  }

  @media (max-width: 991.98px) {
    .navbar .navbar-nav {
      margin-top: 20px;
      border-top: unset;
    }
  } */

.dropdown-item:not(:last-child)::after {
  position: relative;
  width: 100%;
  height: 1px;
  text-align: center;
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 5px;
  background-color: #71706ecc;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #06aed0cc;
}

.dropdown-menu {
  border: unset;
}

.navbar .navbar-nav .nav-link {
  color: #6f6f6f !important;
}

.navbar .navbar-nav .nav-link {
  margin-right: 23px;
}

.navbar .navbar-nav .nav-link {
  font-size: 18px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #29b3d3 !important;
}

.dropdown-item {
  /* color: #29b3d3 !important; */
  color: #71706e !important;
  font-size: 15px;
  font-weight: 600;
}

.navbar .navbar-brand {
  position: relative;
  height: inherit !important;
  width: inherit !important;
}

.navbar .navbar-brand img {
  height: 2.3rem;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
  color: #006813;
  -webkit-animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
}

.site-navbar .site-navigation .site-menu > li > a span {
  font-size: 1.2rem;
  color: #313131;
  font-weight: 700;
  padding: 5px 10px;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #313131 !important;
}

.site-navbar .site-navigation .site-menu .active > a span {
  font-size: 1.2rem;
  color: #313131;
  padding: 5px 10px;
  font-weight: 700;
}

.site-navbar .site-navigation .site-menu .active > a span:hover,
.site-navbar .site-navigation .site-menu .active > a span:focus {
  color: #313131 !important;
}

.site-menu li {
  position: relative;
  display: inline-block;
  margin: 0 10px;
}

.site-menu li.active span,
.site-menu li span {
  position: relative;
  display: inline-block;
}

.site-menu li.active span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  /*根據實際需要調整距離*/
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid red;
}

.site-menu li span:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  /*根據實際需要調整距離*/
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid red;
}

.site-menu li.active:hover span::after,
.site-menu li.active:focus span::after {
  display: block; /* 滑鼠懸停或選中時顯示三角形 */
}

@media screen and (max-width: 768px) {
  .site-navbar .site-navigation .site-menu .active > a span {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .site-navbar .site-navigation .site-menu .active > a span {
    font-size: 1.1rem;
    padding: 5px 5px;
  }
}

@media screen and (max-width: 1024px) {
  .site-navbar .site-navigation .site-menu {
    padding-right: 2rem;
  }
}

.site-mobile-menu {
  width: 185px;
  background: #1c2022;
  padding-top: 80px;
}

@media (min-width: 767px) and (max-width: 979px) {
  .site-mobile-menu {
    padding-top: 130px;
  }
}

.site-mobile-menu-body {
  background: #1c2022;
  scrollbar-width: none;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 7px 10px;
  display: block;
  position: relative;
  color: #fff;
  font-weight: bold;
}

.site-mobile-menu .site-nav-wrap a span {
  font-size: 1.2rem;
  color: #fff;
  padding: 0px 10px;
}

.offcanvas-menu .site-wrap {
  z-index: 2999;
}

.site-wrap:before {
  position: fixed;
}

/* Hero */

.site-navbar {
  z-index: 2999;
  background: linear-gradient(115deg, #efefef 85%, transparent 50%);
  top: 0 !important;
  padding: 15px 0;
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
}
.site-navbar-scroll {
  z-index: 2999;
  background: linear-gradient(115deg, #fff 100%, transparent 50%);
  top: 0 !important;
  padding: 10px 0;
  transition: all 1s ease-in;
  -webkit-transition: all 1s ease-in;
  -moz-transition: all 1s ease-in;
  -ms-transition: all 1s ease-in;
  -o-transition: all 1s ease-in;
}
@media screen and (max-width: 768px) {
  .site-navbar {
    z-index: 3999;
    background: linear-gradient(115deg, #efefef 90%, transparent 50%);
    padding: 0px 0px;
    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
  }
  .site-navbar-scroll {
    position: fixed;
    background: linear-gradient(115deg, #fff 90%, #1c1e22 50%);
    padding: 0px 0;
    transition: all 1s ease-in;
    -webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    -ms-transition: all 1s ease-in;
    -o-transition: all 1s ease-in;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-navbar-scroll {
    position: fixed;
    background: linear-gradient(115deg, #fff 90%, #1c1e22 50%);
    padding: 0px 0;
    transition: all 1s ease-in;
    -webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    -ms-transition: all 1s ease-in;
    -o-transition: all 1s ease-in;
  }
}

.ubea-nav-toggle {
  right: 20px;
}

.logo-img {
  width: 120%;
  height: auto;
}

@media (max-width: 1023px) {
  .logo-img {
    width: 56%;
    height: auto;
  }
}

/* @media screen and (max-width: 768px) {
  .logo-img {
    width: 48%;
    height: auto;
  }
} */

.carousel-caption {
  background: transparent !important;
}

#hero {
  min-height: auto !important;
}

#hero .item1,
#hero .item2,
#hero .item3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* width: 100vw; */
}

#hero .item1 {
  background-image: url(../images/00-hp/banner01_720.jpg);
}
#hero .item2 {
  background-image: url(../images/00-hp/banner02_720.jpg);
}
#hero .item3 {
  background-image: url(../images/00-hp/banner03_720.jpg);
}

@media (max-width: 768px) {
  #hero .item1,
  #hero .item2,
  #hero .item3 {
    height: var(--banner-ratio-720);
    /* height: 100vw; 以正方形顯示 */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #hero .item1,
  #hero .item2,
  #hero .item3 {
    height: var(--banner-ratio-1024);
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  #hero .item1,
  #hero .item2,
  #hero .item3 {
    height: var(--banner-ratio-1280);
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  #hero .item1,
  #hero .item2,
  #hero .item3 {
    height: var(--banner-ratio-1440);
  }
}

@media (min-width: 1440px) {
  #hero .item1,
  #hero .item2,
  #hero .item3 {
    height: var(--banner-ratio-1920);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #hero .item1 {
    background-image: url(../images/00-hp/banner01_1024.jpg);
  }
  #hero .item2 {
    background-image: url(../images/00-hp/banner02_1024.jpg);
  }
  #hero .item3 {
    background-image: url(../images/00-hp/banner03_1024.jpg);
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  #hero .item1 {
    background-image: url(../images/00-hp/banner01_1280.jpg);
  }
  #hero .item2 {
    background-image: url(../images/00-hp/banner02_1280.jpg);
  }
  #hero .item3 {
    background-image: url(../images/00-hp/banner03_1280.jpg);
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  #hero .item1 {
    background-image: url(../images/00-hp/banner01_1440.jpg);
  }
  #hero .item2 {
    background-image: url(../images/00-hp/banner02_1440.jpg);
  }
  #hero .item3 {
    background-image: url(../images/00-hp/banner03_1440.jpg);
  }
}

@media (min-width: 1440px) {
  #hero .item1 {
    background-image: url(../images/00-hp/banner01_1920.jpg);
  }
  #hero .item2 {
    background-image: url(../images/00-hp/banner02_1920.jpg);
  }
  #hero .item3 {
    background-image: url(../images/00-hp/banner03_1920.jpg);
  }
}

.bg-g {
  position: absolute;
  background-image: url(../images/00-hp/bg001.jpg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-g2 {
  position: absolute;
  background-image: url(../images/00-hp/bg2.jpg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-f {
  position: absolute;
  background-image: url(../images/00-hp/ser_bg1024.jpg);
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .bg-f {
    background-image: url(../images/00-hp/ser_bg1080.jpg);
    background-size: contain;
    width: 100%;
    min-height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bg-f {
    background-image: url(../images/00-hp/ser_bg1024.jpg);
    background-size: contain;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .bg-f {
    background-image: url(../images/00-hp/ser_bg1280.jpg);
    background-size: contain;
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .bg-f {
    background-image: url(../images/00-hp/ser_bg1440.jpg);
    background-size: auto;
  }
}

@media (min-width: 1440px) {
  .bg-f {
    background-image: url(../images/00-hp/ser_bg1920.jpg);
    background-size: auto;
  }
}

.content-title p {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1c2022;
  width: max-content;
}

.content-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c2022;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 20px;
  background: linear-gradient(115deg, #afd709 85%, transparent 50%);
  width: max-content;
}

.ser-box {
  width: 100%;
  height: 100%;
  background-color: #1c2022;
  padding: 20px 20px 20px 20px;
  border: 1px solid #fff;
}

.ser-header p {
  color: #afd60b;
  margin-bottom: 1rem;
}

.ser-header img {
  margin-bottom: 1rem;
}

.ser-header h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.ser-body p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: justify;
}

.ser-box2 {
  width: 100%;
  height: 100%;
  background-color: #afd709;
  padding: 20px 20px 20px 20px;
}

.ser-box2 .ser-header h4 {
  color: #1d1e22;
  margin-bottom: 1.5rem;
}

.ser-box2 .ser-body p {
  font-size: 0.9rem;
  color: #1d1e22;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: justify;
}

.ser-btn {
  background-color: #1c2022;
  color: #afd709;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.ser-btn:hover {
  color: #fff;
}

.bg-about {
  background-image: url(../images/00-hp/ab_bg1024.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .bg-about {
    background-image: url(../images/00-hp/ab_bg1080.jpg);
    background-size: cover;
    width: 100%;
    min-height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bg-about {
    background-image: url(../images/00-hp/ab_bg1024.jpg);
    min-height: var(--ab-bg-1024);
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .bg-about {
    background-image: url(../images/00-hp/ab_bg1280.jpg);
    min-height: var(--ab-bg-1280);
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .bg-about {
    background-image: url(../images/00-hp/ab_bg1440.jpg);
    min-height: var(--ab-bg-1440);
  }
}

@media (min-width: 1440px) {
  .bg-about {
    background-image: url(../images/00-hp/ab_bg1920.jpg);
    height: var(--ab-bg-1920);
  }
}

.ab-pic-img {
  position: relative;
  z-index: 3;
}

.ab-pic-bg {
  z-index: 2;
  position: absolute;
  width: 95%;
  height: 92%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 30px;
  left: -5px;
}

@media screen and (max-width: 768px) {
  .ab-pic-bg {
    position: absolute;
    width: 92%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 30px;
    left: -5px;
  }
}

.ab-btn-more {
  background-color: transparent;
  color: #afd709;
  border: 1px solid #afd709;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.ab-btn-more:hover {
  background-color: #afd709;
  color: #fff;
}

.bg-order {
  background-image: url(../images/00-hp/bg.jpg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
}

.order-box {
  width: 100%;
  height: 100%;
  background-image: url(../images/00-hp/bg2.jpg);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  border: 7px solid #1c2022;
}

.order-title {
  background-color: #1c2022;
  border: 7px solid #afd709;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.order-title h3 {
  font-size: 1.5rem;
}

.order-content h6 {
  font-size: 1.12rem;
  color: #1c2022;
}

.order-line {
  background-color: #afd709;
  height: 5px;
  width: 100px;
  margin: 0 auto;
}

.order-content .nav-tabs {
  border-bottom: 1px solid #e2e2e2 !important;
}

.order-content .nav-tabs .nav-link {
  color: #fff;
  background-color: #1c2022;
  border-color: #1c2022 #1c2022 #1c2022;
  border-radius: 0;
  padding: 5px 10px;
}

.order-content .nav-tabs .nav-item.show .nav-link,
.order-content .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #e2e2e2;
  border-color: #e2e2e2 #e2e2e2 #e2e2e2;
  border-radius: 0;
  padding: 5px 10px;
}

.tab-content {
  background-color: #e2e2e2;
}

.order-content ul.space li span {
  color: #1a1e21;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.or-btn {
  background-color: #1c2022;
  border: 1px solid #afd709;
  color: #afd709;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.or-btn:hover {
  color: #fff;
}

.order-choice-title {
  background-color: #1c1e22;
}

.order-choice-title h5 {
  font-size: 1.12rem;
  color: #aed608;
  margin-bottom: 0;
}

.order-choice-style p {
  color: #1c2021;
  word-break: keep-all;
  margin-bottom: 0;
}

.order-choice-style input {
  width: 20px;
  height: 20px;
}

.order-choice-style label {
  padding-top: 2px;
  padding-left: 10px;
  color: #1c2021;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.order-choice-style select {
  /* width: max-content;
  min-width: 50%; */
}

.order-choice-price {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #d22b49;
}

@media screen and (max-width: 768px) {
  .order-choice-price {
    font-size: 1.25rem !important;
  }
}

.order-choice-notice {
  border-top: 1px dashed #d22b49;
}

.order-choice-notice p {
  color: #d22b49;
  font: 14px sans-serif;
  font-weight: 400 !important;
}

.order-form {
  padding: 3rem 3rem;
  border: 8px solid #aed608;
  background-color: #cccccc;
}

@media  (max-width: 768px) {
  .order-form {
    padding: 3rem 1.2rem;
  }
}

.order-form h5 {
  color: #1e2023;
  font-size: 1.15rem !important;
}

.order-form input, .order-form select, .order-form textarea {
  border: 1px solid #1e2023;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.order-form-title-info {
  background:linear-gradient(115deg, #1e2023 85%, transparent 50%);
  color: #d9d9d9 !important;
  width: max-content;
  min-width: 125px;
}

.btn-mask {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 95%;
  height: 100%;
  z-index: 2;
  background-color: #acacac;
}

.reset-btn:active .btn-mask, .reset-btn:focus .btn-mask,
.submit-btn:active .btn-mask, .submit-btn:focus .btn-mask,
.pay-btn:active .btn-mask, .pay-btn:focus .btn-mask {
  /*display: none;
  */top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.btn-submit {
  position: relative;
  z-index: 3;
  border: unset;
  background: linear-gradient(to right, #afd709 0%, #afd709 100%);
  color: #1c2020;
  letter-spacing: 1.5px;
  border-radius: 0;
  /*box-shadow: #bababa 0 0 10px 1px;
  */padding: 7px 20px !important;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn-submit:hover {
  background: linear-gradient(to right, #afd709 0%, #afd709 100%);
  color: #1c2020;
}

.btn-reset {
  position: relative;
  z-index: 3;
  border: unset;
  background: linear-gradient(to right, #858585 0%, #858585 100%);
  color: #fefefe;
  letter-spacing: 1.5px;
  border-radius: 0;
  /*box-shadow: #bababa 0 0 10px 1px;
  */padding: 7px 20px !important;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn-reset:hover {
  background: linear-gradient(to right, #858585 0%, #858585 100%);
  color: #fefefe;
}

.btn-pay {
  position: relative;
  z-index: 3;
  border: unset;
  background: linear-gradient(to right, #afd709 0%, #afd709 100%);
  color: #1c2020;
  letter-spacing: 1.5px;
  border-radius: 0;
  /*box-shadow: #bababa 0 0 10px 1px;
  */padding: 7px 20px !important;
  transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn-pay:hover {
  background: linear-gradient(to right, #afd709 0%, #afd709 100%);
  color: #1c2020;
}

.payment-info {
  background-color: #1c2022;
}

.payment-info h4 {
  letter-spacing: 1.5px;
  color: #aed608;
  margin-bottom: 2.5rem;
}

.payment-info p {
  color: #e4e4e4;
}

.payment-info span {
  color: #aed608 !important;
}

.order-form-complete {
  padding: 3rem 3rem;
  border: 8px solid #aed608;
  background-color: #cccccc;
}

@media  (max-width: 768px) {
  .order-form-complete {
    padding: 3rem 1.2rem;
  }
}

.order-form-complete .table tr th,
.order-form-complete .table tr td {
  padding-left: 2rem;
  padding-right: 2rem;
  word-break: keep-all;
}

@media  (max-width: 768px) {
  .order-form-complete .table tr th,
  .order-form-complete .table tr td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    word-break: keep-all;
  }
}

.order-form-complete .table tr td {
  color: #1d1e20;
  font-weight: 400;
  letter-spacing: 1.5px;
  border-top: 1px solid #858585;
}

.order-form-complete-notice {
  padding-left: 2rem;
  padding-right: 2rem;
}

.order-form-complete-notice p {
  color: #1c2021;
}

@media screen and (max-width: 768px) {
  .bg-g-slash {
    max-width: 65%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bg-g-slash {
    max-width: 40%;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .bg-g-slash {
    max-width: 50%;
  }
}

.case-img {
  border: 8px solid #1c2022;
  border-radius: 0;
}

.case-name {
  color: #1d1e20;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.see-count {
  font: 1em sans-serif;
  color: #414141;
  letter-spacing: 1px;
}

.bg-process {
  background-image: url(../images/00-hp/pro_bg1024.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
}

@media screen and (max-width: 769px) {
  .bg-process {
    background: linear-gradient(172deg, rgb(255 255 255 / 0%) 15%, #4d4e50 18%),
      url(../images/00-hp/pro_bg1080.jpg);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .bg-process {
    background-image: url(../images/00-hp/pro_bg1024.jpg);
    /* width: 100%; */
    min-height: var(--pro-bg-1024);
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .bg-process {
    background-image: url(../images/00-hp/pro_bg1280.jpg);
    /* width: 100%; */
    min-height: var(--pro-bg-1280);
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .bg-process {
    background-image: url(../images/00-hp/pro_bg1440.jpg);
    /* width: 100%; */
    min-height: var(--pro-bg-1440);
  }
}

@media (min-width: 1440px) {
  .bg-process {
    background-image: url(../images/00-hp/pro_bg1920.jpg);
    /* width: 100%; */
    min-height: var(--pro-bg-1920);
  }
}

.num-box {
  background-color: #fff;
  color: #1c2022;
  font: 13px sans-serif;
  letter-spacing: 1.5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-arrow-pro {
  width: 70%;
}

/* @media screen and (max-width: 768px) {
  .img-arrow-pro {
    width: 20%;
  }
} */

.process-text {
  width: max-content;
}

.process-text p {
  color: #fff;
  font: 1em sans-serif;
  letter-spacing: 1.5px;
  line-height: 1.5rem;
}

.case-btn {
  background-color: #1c2022;
  border: 1px solid #afd709;
  color: #afd709;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.case-btn:hover {
  color: #fff;
}

.bg-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, #00000073 0%, rgb(0 0 0 / 0%) 50%);
}

.or-bg-left {
  position: relative;
  height: auto;
  min-height: 300px;
  background-image: url(../images/00-hp/order_bannerpic1280.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* min-height: calc(100vw * (624 / 1280)); */
}

@media screen and (max-width: 768px) {
  .or-bg-left {
    background-image: url(../images/00-hp/order_bannerpic624.jpg);
    /* min-height: calc(100vw * (624 / 624)); */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .or-bg-left {
    background-image: url(../images/00-hp/order_bannerpic1024.jpg);
    /* min-height: calc(100vw * (512 / 1024)); */
  }
}

.or-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 144%;
  min-height: 300px;
  height: 100%;
  background: linear-gradient(-65deg, #1c2022 74%, transparent 50%);
}

.faq-bg-left {
  position: absolute;
  z-index: 1;
  width: 144%;
  min-height: 300px;
  height: 100%;
  background: linear-gradient(115deg, #1c2022 74%, transparent 50%);
}

.faq-bg-right {
  position: relative;
  height: auto;
  min-height: 300px;
  background-image: url(../images/00-hp/faq_bannerpic1280.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* min-height: calc(100vw * (624 / 1280)); */
}

@media screen and (max-width: 768px) {
  .faq-bg-right {
    background-image: url(../images/00-hp/faq_bannerpic624.jpg);
    /* min-height: calc(100vw * (624 / 624)); */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .faq-bg-right {
    background-image: url(../images/00-hp/faq_bannerpic1024.jpg);
    /* min-height: calc(100vw * (512 / 1024)); */
  }
}

.bg-cta-line {
  background-color: #afd709;
  height: 5px;
  width: 100%;
}

.inner-content span {
  color: #acd706;
  font-size: 1.3rem;
}

.cta-btn {
  background-color: #1c2022;
  border: 1px solid #afd709;
  color: #afd709;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.cta-btn:hover {
  color: #fff;
}

.footer-splash-bg {
  width: 100%;
  background: url(../images/00-hp/footer_slash624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vw * (24 / 624));
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-splash-bg {
    background: url(../images/00-hp/footer_slash1024.jpg);
    height: calc(100vw * (24 / 1024));
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .footer-splash-bg {
    background: url(../images/00-hp/footer_slash1280.jpg);
    height: calc(100vw * (24 / 1280));
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .footer-splash-bg {
    background: url(../images/00-hp/footer_slash1440.jpg);
    height: calc(100vw * (24 / 1440));
  }
}

@media (min-width: 1440px) {
  .footer-splash-bg {
    background: url(../images/00-hp/footer_slash1920.jpg);
    height: calc(100vw * (24 / 1920));
  }
}

.site-footer {
  background-color: #0d0d0f;
}

.footer-phone,
.footer-phone a {
  color: #afd706;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .footer-phone,
  .footer-phone a {
    color: #afd706;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 1.35rem;
  }
}

.site-footer ul li {
  margin-bottom: 0;
}
.site-footer ul li a {
  color: #fff;
}

.site-footer ul li a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .copyright {
    margin-bottom: 40px;
  }
}

.copyright-line {
  background-color: #5d5d60;
  height: 1px;
}

.copyright p,
.copyright p a {
  font-size: 12px;
}

.copyright p a:hover {
  color: #afd709;
}

.social-links-btn {
  position: fixed;
  z-index: 9;
  top: 50%;
  left: 2%;
  transform: translate(-5%, -50%);
  -webkit-transform: translate(-5%, -50%);
  -moz-transform: translate(-5%, -50%);
  -ms-transform: translate(-5%, -50%);
  -o-transform: translate(-5%, -50%);
}

.social-links-btn a {
  width: 5rem;
}

.social-links-btn-mobile {
  width: 100vw;
  height: 45px;
  z-index: 4999;
}

.s-line-btn {
  /* background: linear-gradient(to top, #71a42c 0%, #a0c251 100%); */
  background-color: #bce422;
  height: 100%;
  border-right: 0.5px solid #fff;
  /* border-left: 0.5px solid #fff; */
}

.s-phone-btn {
  /* background: linear-gradient(to top, #fe911f 0%, #f8b834 100%); */
  background-color: #0b0e0f;
  height: 100%;
  /* border-right: 0.5px solid #fff; */
  border-left: 0.5px solid #fff;
}

.s-location-btn {
  /* background: linear-gradient(to top, #ac8896 0%, #caa7b5 100%); */
  background-color: #000000;
  height: 100%;
  /* border-right: 0.5px solid #fff; */
  border-left: 0.5px solid #fff;
}

.social-links-btn-mobile a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.top-fb-img {
  position: absolute;
  top: 30px;
  right: 4rem;
  width: 70px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 60px;
  }
}

.highlight-box {
  position: relative;
  z-index: 5;
  background-color: #afd709;
  width: max-content;
  padding: 10px 20px;
}

.highlight-box-title {
  color: #1c2022;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .highlight-box {
    width: auto;
  }
}

.content {
  position: relative;
  z-index: 4;
}

.content p {
  color: #d8d9db;
}

.content-bg {
  position: absolute;
  top: 25px;
  right: 0;
  width: 115%;
  height: 100%;
  z-index: 3;
  background-color: #1c2022;
}

@media (max-width: 1023px) {
  .content-bg {
    width: 100% !important;
  }
}

.pg-about-img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.pg-about-img-mask {
  position: absolute;
  top: 15px;
  left: -15px;
  width: 90%;
  height: 100%;
  z-index: 4;
  background-color: #2a2526;
  opacity: 0.8;
}

.slogan {
  font-size: 2rem;
  font-weight: 800;
  color: #1c2022;
  letter-spacing: 1.5px;
}

.slogan-bg {
  position: absolute;
  left: 0;
  transform: translateY(-30%);
  width: 50%;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -o-transform: translateY(-30%);
}

@media (max-width: 1024px) {
  .slogan {
    font-size: 1.7rem;
  }
  .slogan-bg {
    width: 60%;
    transform: translateY(-20%);
    -webkit-transform: translateY(-20%);
    -moz-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    -o-transform: translateY(-20%);
  }
}

@media (max-width: 767px) {
  .slogan {
    font-size: 1.2rem;
  }
  .slogan-bg {
    width: 70%;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

.about-item-box {
  border: 8px solid #1c2022;
  border-radius: 0;
  background-color: #cccccc;
}

.about-item-box2 {
  position: absolute;
  top: 0;
  z-index: 5;
  border: 8px solid #1c2022;
  border-radius: 0;
  background-color: #cccccc;
}

.about-item-last {
  height: 150px;
}

@media (max-width: 1024px) {
  .about-item-box2 {
    position: relative;
    top: 0;
    z-index: 5;
    border: 8px solid #1c2022;
    border-radius: 0;
    background-color: #cccccc;
  }

  .about-item-last {
    height: auto;
  }
}

.about-item-num p {
  margin-bottom: 0;
}

.about-item-num .num-txt {
  color: #1c2020;
  line-height: 1.2rem;
}

.about-item-num .num {
  color: #1c2020;
  font-size: 2.5rem;
}

.aboutbox-item-bg-01 {
  background-image: url(../images/01/01pic2_624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aboutbox-item-bg-01 {
    background-image: url(../images/01/01pic2_1024.jpg);
    min-height: 300px;
  }
}

@media (min-width: 1025px) {
  .aboutbox-item-bg-01 {
    background-image: url(../images/01/01pic2_1280.jpg);
  }
}

.aboutbox-item-bg-02 {
  background-image: url(../images/01/01pic3_624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aboutbox-item-bg-02 {
    background-image: url(../images/01/01pic3_1024.jpg);
    min-height: 300px;
  }
}

@media (min-width: 1025px) {
  .aboutbox-item-bg-02 {
    background-image: url(../images/01/01pic3_1280.jpg);
  }
}

.aboutbox-item-bg-03 {
  background-image: url(../images/01/01pic4_624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .aboutbox-item-bg-03 {
    background-image: url(../images/01/01pic4_1024.jpg);
    min-height: 300px;
  }
}

@media (min-width: 1025px) {
  .aboutbox-item-bg-03 {
    background-image: url(../images/01/01pic4_1280.jpg);
  }
}

.line-more {
  position: relative;
  height: 8px;
  background: linear-gradient(to bottom, #636363 0%, #737373 100%);
}

.about-more-bg {
  background-image: url(../images/01/bottom_pic624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-more-bg {
    background-image: url(../images/01/bottom_pic1024.jpg);
  }
}

@media (min-width: 1025px) {
  .about-more-bg {
    background-image: url(../images/01/bottom_pic1280.jpg);
  }
}

.about-more-content {
  margin-top: 12rem;
  padding-left: 10rem !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-more-content {
    margin-top: 3rem;
    padding-left: 5rem !important;
  }
}

@media (max-width: 768px) {
  .about-more-content {
    margin-top: 3rem;
    padding-left: unset !important;
    padding: 0 2rem !important;
  }
}

.about-more-content h4 {
  color: #1c1e22;
  font-size: 1.5rem;
  font-weight: 800;
}

.about-more-content p {
  color: #1c1e22;
}

.content-title-subtxt {
  color: #1c1e22;
}

.servicebox-item-bg-01 {
  /* background-image: url(../images/02/02pic1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  border: 8px solid #acd706;
}

.servicebox-item-bg-02 {
  /* background-image: url(../images/02/02pic2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  border: 8px solid #acd706;
}

.servicebox-item-bg-03 {
  /* background-image: url(../images/02/02pic3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  border: 8px solid #acd706;
}

.servicebox-item-bg-04 {
  /* background-image: url(../images/02/02pic4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  border: 8px solid #acd706;
}

.servicebox-item-bg-05 {
  /* background-image: url(../images/02/02pic5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  border: 8px solid #acd706;
}

.service-item-box {
  background-color: #1c1e22;
  /* height: 100%; */
}

.service-item-box2 {
  background-color: #1c1e22;
  position: absolute;
  top: 0;
  z-index: 5;
}

.service-item-last {
  height: 150px;
}

@media (max-width: 1024px) {
  .service-item-box2 {
    position: relative;
    top: 0;
    z-index: 5;
    background-color: #1c1e22;
  }

  .service-item-last {
    height: auto;
  }
}

.servicebox-item-content p {
  color: #d9d9d9;
}

.servicebox-item-content span {
  color: #acd706;
}

.service-more-bg {
  background-image: url(../images/02/bottom_pic624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-more-bg {
    background-image: url(../images/02/bottom_pic1024.jpg);
  }
}

@media (min-width: 1025px) {
  .service-more-bg {
    background-image: url(../images/02/bottom_pic1280.jpg);
  }
}

.service-more-content {
  margin-top: 12rem;
  padding-left: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-more-content {
    margin-top: 3rem;
    padding-left: 3rem !important;
  }
}

@media (max-width: 768px) {
  .service-more-content {
    margin-top: 3rem;
    padding-left: unset !important;
    padding: 0 2rem !important;
  }
}

.service-more-content h4 {
  color: #1c1e22;
  font-size: 1.5rem;
  font-weight: 800;
}

.service-more-content p {
  color: #1c1e22;
}

.process-item-box {
  height: 100%;
  position: relative;
  z-index: 5;
  background-color: #1c1e22;
}

.process-item-box2 {
  background-color: #1c1e22;
  position: absolute;
  top: 0;
  z-index: 5;
  width: 100%;
}

.process-item-last {
  height: 150px;
}

@media (max-width: 1024px) {
  .process-item-box2 {
    position: relative;
    top: 0;
    z-index: 5;
  }

  .process-item-last {
    height: auto;
  }
}

.process-item-content {
  min-height: 230px;
}

@media (max-width: 1024px) {
  .process-item-content {
    min-height: auto;
  }
}

.process-item-content p,
.process-item-content2 p {
  color: #d9d9d9;
}

.prc-step-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.process-item-img {
  margin-top: auto;
  position: static;
  bottom: 0;
}

.process-item-img img {
  position: relative;
  width: 100%;
}

.process-item-img2 {
  background-image: url(../images/03/03pic7_1280.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .process-item-img2 {
    background-image: url(../images/03/03pic7_960.png);
  }
}

.process-more-bg {
  background-image: url(../images/03/bottom_pic624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .process-more-bg {
    background-image: url(../images/03/bottom_pic1024.jpg);
  }
}

@media (min-width: 1025px) {
  .process-more-bg {
    background-image: url(../images/03/bottom_pic1280.jpg);
  }
}

.process-more-content {
  margin-top: 12rem;
  padding-left: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .process-more-content {
    margin-top: 3rem;
    padding-left: 3rem !important;
  }
}

@media (max-width: 768px) {
  .process-more-content {
    margin-top: 3rem;
    padding-left: unset !important;
    padding: 0 2rem !important;
  }
}

.process-more-content h4 {
  color: #1c1e22;
  font-size: 1.5rem;
  font-weight: 800;
}

.process-more-content p {
  color: #1c1e22;
}

.cases-category-mask {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 95%;
  height: 100%;
  z-index: 2;
  background-color: #aed608;
}

.cases-category-title {
  z-index: 3;
  padding: 1rem 20px;
  background-color: #1c1e22;
  color: #fff;
}

.cases-category-list {
  z-index: 3;
  background-color: #cccccc;
  max-height: 380px;
  overflow: auto;
  scrollbar-width: 1px;
  scrollbar-color: #1c1e22 #cccccc;
}

.cases-category-item {
  padding: 1rem 20px;
}

.cases-category-item:not(:last-child) {
  border-bottom: 1px solid #1c1e22;
}

.cases-category-link {
  color: #1c1e22;
  font-weight: 600;
}

.cases-category-link.c-active {
  color: #6e6e6e;
}

.case-inner-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: 1.5px;
  background-color: #1c1e22;
  border-bottom: 3px solid #aed608;
  padding: 1.5rem 0;
}

.case-inner-content {
  background-color: #cccccc;
}

.cases-count {
  color: #fff;
  font: 14px sans-serif;
  font-weight: 600;
}

.cases-info {
  color: #414141;
}

.faq-top-content {
  background-image: linear-gradient(to top, #1c2022 35%, transparent 100%),
    url(../images/05/05bannerpic624.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20rem;
  border: 7px solid #1c2022;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .faq-top-content {
    background-image: linear-gradient(to top, #1c2022 35%, transparent 100%),
      url(../images/05/05bannerpic1024.jpg);
    padding: 1rem 3rem;
  }
}

@media (min-width: 1025px) {
  .faq-top-content {
    background-image: linear-gradient(to right, #1c2022 35%, transparent 100%),
      url(../images/05/05bannerpic1280.jpg);
    padding: 2rem 3rem;
  }
}

.faq-top-content p {
  color: #d8d9db;
}

.faq-item-a {
  display: none;
  color: #d8d9db !important;
  font-weight: 600;
  text-decoration: none;
}

.faq-item-a p {
  color: #d8d9db !important;
  font-weight: 600;
  text-decoration: none;
}

.faq-item-q {
  cursor: pointer;
}

.faq-item-q h5 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.faq-item-q-num {
  color: #aed608;
  font-size: 1.5rem;
  font-weight: 800;
  margin-right: 1rem;
}

.faq-item-box {
  background-color: #1c2022;
  padding: 20px 2rem;
}

@media (max-width: 768px) {
  .faq-item-box {
    padding: 20px 1rem;
  }
}

@media (max-width: 992px) {
  .faq-contact-box img {
    position: relative;
    transform: unset;
  }
}

/* .faq-item-arrow-d .bi::before {
  color: red;
  font-weight: 800 !important;
}

.faq-item-arrow-p .bi::before {
  color: red;
  font-weight: 800 !important;
} */

.faq-item-line {
  background: #d6d6d6;
  height: 1px;
  margin: 15px 0;
  width: 100%;
}

@media (min-width: 1025px) {
  .d-l-none {
    display: none !important;
  }
}

@media (min-width: 1181px) {
  .d-ls-none {
    display: none !important;
  }
}
