@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.05rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

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

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: "Noto Sans TC", sans-serif;
  font-family: "PingFang TC", "Noto Sans TC";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #f7f2eb;
}

.cta-link {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cta-link {
    right: 1rem;
    bottom: 1rem;
    gap: 0.8rem;
  }
}
.cta-link a {
  display: inline-block;
}
.cta-link a i {
  font-size: 2rem;
  color: gray;
}
.cta-link a i:hover {
  color: #27324a;
}
.cta-link a svg {
  fill: gray !important;
}
.cta-link a svg:hover {
  fill: #27324a;
}

h2 {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #27324a;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2 span:first-child {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
  text-transform: uppercase;
}
h2 span:last-child {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

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

a {
  text-decoration: none;
  color: #27324a;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #f7f2eb;
  z-index: 1049;
  transition: 0.5s;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 60px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 50px;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    flex-grow: 0;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 2rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #27324a;
}

#hero {
  width: 100%;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 56px;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: start;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.45));
}
@media (max-width: 768px) {
  #hero .cta-box {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.651));
    padding: 1rem;
  }
}
#hero .cta-box .cta-content {
  color: white;
  border-radius: 1rem;
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 0.2rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    margin-bottom: 0.2rem;
  }
}
#hero .cta-box .cta-content h1 span:first-child {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2.5px;
  line-height: 0;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 span:first-child {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 2px;
  }
}
#hero .cta-box .cta-content h1 span:last-child {
  font-size: 27px;
  font-weight: 500;
  line-height: 0;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 span:last-child {
    font-size: 14px;
    line-height: 1.3;
  }
}
#hero .cta-box .cta-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    font-size: 0.9rem;
  }
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  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: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #27324a;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #27324a;
}
#hero .swiper {
  width: 100%;
  height: 90vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 40vh;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#services {
  padding-bottom: 0;
}
#services .service-card {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  #services .service-card {
    padding-bottom: 2rem;
  }
}
#services .service-card .icon {
  text-align: center;
}
#services .service-card .icon svg {
  width: 45%;
  fill: #333a4a;
}
@media (max-width: 768px) {
  #services .service-card .icon svg {
    width: 35%;
  }
}
#services .service-card h3 {
  color: #333a4a;
  text-align: center;
  margin: 3rem 0 1.5rem;
}
@media (max-width: 768px) {
  #services .service-card h3 {
    margin: 2.5rem 0 1rem;
  }
}
#services .service-card p {
  color: #9d9d9d;
}

#about {
  padding-top: 15rem;
}
@media (max-width: 768px) {
  #about {
    padding-top: 10rem;
  }
}
#about .content {
  background: #27324a;
  color: white;
  margin-bottom: 4rem;
}
#about .content h2 {
  color: white;
}
#about .content .text {
  padding: 2rem;
}
#about .content .text .brand {
  color: #c8a974;
}
#about .content .swiper {
  width: 100%;
  height: 100%;
}
#about .content .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#process .process-box {
  padding-left: 1rem;
}
@media (max-width: 768px) {
  #process .process-box {
    padding-left: 0;
    padding-top: 2rem;
  }
}
#process .process-box .process-card {
  padding: 0 0 1.5rem;
  border-bottom: 1px solid gray;
  margin-bottom: 1.5rem;
}
#process .process-box .process-card h3 {
  margin-bottom: 1rem;
}
#process .process-box .process-card p {
  color: #9d9d9d;
  margin-bottom: 0;
}

#works .work-card {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: inline-block;
}
@media (max-width: 768px) {
  #works .work-card {
    height: 200px;
  }
}
#works .work-card img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .work-card .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  transition: 1s;
  color: white;
}
#works .work-card .text h5 {
  transition: 0.5s;
  margin-bottom: 0;
  transition: 1s;
}
#works .work-card i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  transition: 0.5s;
}
#works .work-card:hover img {
  transform: scale(1.15);
}
#works .work-card:hover .text {
  display: none;
}
#works .work-card:hover i {
  top: 0.5rem;
  right: 0.5rem;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem 2rem;
  border-bottom: 1px solid rgb(171, 171, 171);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #27324a;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 1.5rem;
}
#contact .contact-box a {
  color: #27324a;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */