@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: white;
}

h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  background: -webkit-linear-gradient(90deg, rgba(224, 170, 62, 0.9529411765) 0%, #f9f295 10%, #e0aa3e 24%, #e0aa3e 44%, #faf398 74%, #b88a44 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  border-bottom: 1px solid #D4B064;
  padding: 0rem 5rem 1rem;
  display: inline-block;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

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

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

.bg {
  position: fixed;
  top: 0;
  left: 0;
  background: #3C3E4A;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/assets/bg.png) repeat top;
  background-size: 400px auto;
  position: absolute;
  opacity: 0.1;
}

.navbar.scrolled .navbar-brand {
  transition: 0.5s;
}
.navbar.scrolled .navbar-brand img {
  width: 70px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 60px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
  background: #3C3E4A;
  border-bottom: 1px solid #D4B064;
}
.navbar::after {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/assets/bg.png) repeat top;
  background-size: 400px auto;
  position: absolute;
  opacity: 0.1;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 100px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 60px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  color: #D4B064;
}
@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: #D4B064;
}

#hero {
  width: 100%;
  height: 80vh;
  position: relative;
  margin-top: 102px;
}
@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: center;
  background: rgba(0, 0, 0, 0.438);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: rgba(0, 0, 0, 0.293);
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    font-size: 2rem;
  }
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    font-size: 1rem;
  }
}
#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;
  font-size: 1.2rem;
  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: #D4B064;
  color: white;
}
#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: #3C3E4A;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about p {
  padding-left: 2rem;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #about p {
    margin-top: 2rem;
  }
}

#services {
  background: rgba(184, 181, 193, 0.2);
  position: relative;
}
#services::after, #services::before {
  content: "";
  width: 100%;
  background: #B8B5C1;
  height: 1rem;
  position: absolute;
  left: 0;
}
#services::after {
  top: 0;
}
#services::before {
  bottom: 0;
}
#services .services-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#services .services-card .services-icon-box {
  width: 60%;
  aspect-ratio: 1/1;
  background: #3C3E4A;
  text-align: center;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid rgb(255, 255, 255);
}
#services .services-card .services-icon-box svg {
  width: 60%;
  height: 100%;
  fill: white;
  stroke: white;
}
#services .services-card h3 {
  padding: 1rem 0;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  #services .services-card h3 {
    font-size: 1.2rem;
  }
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #3C3E4A;
}
#works .nav-pills .nav-link {
  color: #FF6B00;
}
#works img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #works img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: #B8B5C1;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
  color: #4B4957;
}
#contact .contact-box .big {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #contact .contact-box h3 {
    font-size: 1.1rem;
  }
}
#contact .contact-box a {
  color: #3C3E4A;
  font-size: 1.4rem;
  text-decoration: underline;
}
@media (max-width: 768px) {
  #contact .contact-box a {
    font-size: 1.2rem;
  }
}
#contact .contact-box a.small {
  font-size: 1rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

.icon-box {
  background: #3C3E4A;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.icon-box i {
  color: white;
  font-size: 2rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: white;
}

.quickly-link {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 1040;
  opacity: 0.8;
}
.quickly-link:hover {
  opacity: 1;
}
.quickly-link .icon-box {
  background: #B8B5C1;
  border: 2px solid white;
}/*# sourceMappingURL=style.css.map */