@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.15rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 400;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  font-family: "PingFang TC", "Noto Sans TC, , sans-serif";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #313131;
  background: #f8f6f2;
}

h2 {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2 span:first-child {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-family: "Helvetica", "PingFang TC", "Noto Sans TC";
  text-transform: uppercase;
}
h2 span:last-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
h2 span:last-child::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  display: inline-block;
  background: #b4b4b4;
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #3c3c3c;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link .tel {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  outline: none;
}
.cta-link .tel.dropdown-toggle::before {
  display: none;
}
.cta-link .tel .name {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  border: 1.5px solid white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background: red;
  font-size: 0.8rem;
  border-radius: 100%;
}
.cta-link svg {
  width: 50px;
}
.cta-link svg.phone #background {
  fill: #3c3c3c;
}
@media (max-width: 768px) {
  .cta-link svg {
    width: 43px;
  }
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar {
  position: fixed;
  top: 2rem;
  left: 50%;
  z-index: 1000;
  width: 90%;
  transform: translateX(-50%);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6745098039);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
  .navbar {
    top: 1rem;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .container-fluid {
  padding: 0 16px;
}
.navbar .navbar-nav .nav-item .nav-link {
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 1rem;
  }
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-brand img {
  width: 250px;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 200px;
  }
}
.navbar .cta {
  background: #c8a97e;
  background: #8b7b6a;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 70px;
  color: white;
}
@media (max-width: 768px) {
  .navbar .cta {
    display: none;
  }
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 1rem 2rem;
  display: flex;
  align-items: end;
  justify-content: start;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
  #hero .cta-box {
    display: none;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    color: #3c3c3c;
    padding: 2rem 0;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  line-height: 1.5;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box {
    flex-direction: column;
  }
}
#hero .cta-box .cta-content .btn-box a {
  padding: 14px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
  border: 1px solid white;
  color: white;
  transition: 0.5s;
}
#hero .cta-box .cta-content .btn-box a:hover {
  background: white;
  color: black;
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #hero .swiper .swiper-wrapper .swiper-slide img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#choose {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #choose {
    padding: 5rem 0 3rem;
  }
}
#choose h4 {
  text-align: center;
  margin-bottom: 4rem;
}
#choose .choose-card-col:last-child .choose-card {
  border-right: none;
}
#choose .choose-card-col .choose-card {
  padding-right: 2rem;
  border-right: 1px solid #b4b4b4;
}
@media (max-width: 768px) {
  #choose .choose-card-col .choose-card {
    border: none;
    padding: 1rem;
  }
}
#choose .choose-card-col .choose-card h3 {
  margin-bottom: 1rem;
}
#choose .choose-card-col .choose-card p {
  color: #929292;
}

#about .img-box {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  #about .img-box {
    margin-bottom: 3rem;
  }
}
#about .img-box .img-item {
  flex: 1;
}
#about .img-box .img-item:last-child {
  padding-top: 3rem;
}
#about .img-box .img-item img {
  width: 100%;
}
#about p {
  line-height: 2;
  margin-bottom: 1rem;
}
#about p:last-child {
  margin-bottom: 0;
}

#services .service-card {
  background: white;
  padding: 1rem 2rem;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
#services .service-card .icon-box svg {
  width: 70%;
}
@media (max-width: 768px) {
  #services .service-card .icon-box svg {
    width: 50%;
  }
}
#services .service-card h3 {
  margin: 2rem 0 1.5rem;
}
#services .service-card ul {
  padding-left: 1rem;
  color: #929292;
}
#services .service-card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
#services .service-card ul li::marker {
  font-size: 0.7rem;
}

#process {
  padding-top: 0;
}
#process .img-box {
  padding-top: 8rem;
  position: sticky;
  top: 0;
  z-index: 999;
}
@media (max-width: 768px) {
  #process .img-box {
    padding-top: 0;
    position: static;
    margin-bottom: 1rem;
  }
}
#process .process-list {
  padding-top: 17.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  #process .process-list {
    padding-top: 0;
  }
}
#process .process-list .process-card {
  border: 1px solid #b4b4b4;
  padding: 1.5rem 2rem;
}
#process .process-list .process-card h3 {
  margin-bottom: 1rem;
}
#process .process-list .process-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
  color: #929292;
}
#process .process-list .process-card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
#process .process-list .process-card ul li::marker {
  font-size: 0.7rem;
}

#works .work-section {
  width: 100%;
  height: 100vh;
}
@media (max-width: 768px) {
  #works .work-section {
    height: auto;
    padding: 12px;
  }
}
#works .work-section .swiper {
  width: 100%;
  position: relative;
}
#works .work-section .swiper img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #works .work-section .swiper img {
    height: 250px;
  }
}
#works .work-section .swiper .content {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  display: flex;
  gap: 1rem;
  background: rgba(98, 98, 98, 0.16);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 0.5rem;
  align-items: center;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  pointer-events: none;
}
@media (max-width: 768px) {
  #works .work-section .swiper .content {
    justify-content: space-between;
    border-radius: 0;
    width: 100%;
    bottom: 0;
    right: 0;
    padding: 0.5rem;
  }
}
#works .work-section .swiper .content h3 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
}
#works .work-section .swiper .content a {
  padding: 14px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
  border: 1px solid white;
  color: white;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #works .work-section .swiper .content a {
    padding: 8px 18px;
  }
}
#works .work-section .swiper .content a:hover {
  background: white;
  color: black;
}
#works .work-section .swiper .content a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}

#contact {
  color: white;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 0;
  }
}
#contact .bg-dark-2 {
  background: #3c3c3c;
}
#contact h2 {
  color: white;
}
#contact ul {
  padding: 0;
  list-style: none;
}
#contact ul li:nth-child(odd) {
  color: #b4b4b4;
  margin-bottom: 0.5rem;
}
#contact ul li:nth-child(even) {
  margin-bottom: 1.5rem;
}
#contact ul li a {
  color: white;
}

footer {
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  footer {
    font-size: 0.8rem;
    padding-bottom: 0;
  }
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */