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

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

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

h3 {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  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;
}

:root {
  --swiper-theme-color: white;
}

body {
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #1f2d3d;
  color: rgb(243, 243, 243);
}

h2 {
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2::after {
  content: "";
  position: absolute;
  width: 5%;
  height: 2px;
  background: #cfaf72;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
h2 span:first-child {
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #cfaf72;
}
h2 span:last-child {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 500;
}

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

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #1f2d3d;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
  color: white;
  font-family: "Yuji Mai", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 500;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #cfaf72;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: #1f2d3d;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    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: center;
  justify-content: start;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.731), rgba(0, 0, 0, 0));
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: rgba(0, 0, 0, 0.293);
    padding: 1rem;
    text-align: center;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  color: rgb(218, 218, 218);
  line-height: 2;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  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: #cfaf72;
  color: #1f2d3d;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
  border: 1px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #cfaf72;
  color: #1f2d3d;
  border-color: #1f2d3d;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .logo {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 20;
}
@media (max-width: 768px) {
  #hero .swiper .logo {
    width: 150px;
    right: auto;
    left: 1rem;
    bottom: 1rem;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 768px) {
  #hero .swiper .swiper-wrapper .swiper-slide img {
    filter: brightness(0.6);
  }
}

#about {
  position: relative;
}
#about .bg {
  position: absolute;
  width: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
  z-index: -1;
}
@media (max-width: 768px) {
  #about .bg {
    display: none;
  }
}

#awards {
  position: relative;
  padding: 4rem 0;
}
#awards .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: -1;
}
#awards .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

#services {
  background: rgba(255, 255, 255, 0.065);
  padding: 8rem 8rem;
}
@media (max-width: 768px) {
  #services {
    padding: 4rem 1rem;
  }
}
#services .service-outline {
  padding: 0.5rem;
  background: #b8a37e;
  height: 100%;
  border-radius: 0.5rem;
}
#services .service-outline .service-card {
  border: 2px solid #1f2d3d;
  height: 100%;
  color: #1f2d3d;
  padding: 2rem;
  border-radius: 0.5rem;
}
#services .service-outline .service-card .svg-box {
  margin-bottom: 2.5rem;
  text-align: center;
}
#services .service-outline .service-card .svg-box svg {
  width: 60%;
  fill: #1f2d3d;
}
@media (max-width: 768px) {
  #services .service-outline .service-card .svg-box svg {
    width: 50%;
  }
}
#services .service-outline .service-card h3 {
  margin-bottom: 1.5rem;
}

#process h2 {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  #process h2 {
    margin-bottom: 5rem;
  }
}
#process .process-card {
  position: relative;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  #process .process-card {
    margin-bottom: 7rem;
  }
}
#process .process-card .step {
  position: absolute;
  top: -3.5rem;
  left: -1rem;
  background: #cfaf72;
  background: #b8a37e;
  padding: 0.5rem 2rem 5rem;
  color: #1f2d3d;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 500;
  z-index: -1;
}
@media (max-width: 768px) {
  #process .process-card .step {
    left: 0;
  }
}
#process .process-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
@media (max-width: 768px) {
  #process .process-card img {
    height: 200px;
  }
}
#process .process-card h3 {
  color: #cfaf72;
  margin: 1rem 0;
}

#env {
  background: rgba(255, 255, 255, 0.065);
}
#env .swiper {
  width: 100%;
}
#env .swiper .swiper-slide {
  width: 100%;
}
#env .swiper .swiper-slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #env .swiper .swiper-slide img {
    height: 200px;
  }
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #cfaf72;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid gray;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #cfaf72;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  color: #1f2d3d;
  font-size: 2rem;
}
#contact .contact-box svg {
  fill: #1f2d3d;
}
#contact .contact-box a {
  color: #cfaf72;
  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 */