@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;
}

.h2-box {
  margin-bottom: 2rem;
}
.h2-box h2 {
  color: #F7AF59;
  font-weight: 400;
  font-size: 1.2rem;
}
.h2-box span {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(13, 19, 78);
}

@media (max-width: 768px) {
  .h2-box {
    margin-bottom: 2rem;
  }
  .h2-box h2 {
    color: #F7AF59;
    font-weight: 400;
    font-size: 1.1rem;
  }
  .h2-box span {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(13, 19, 78);
  }
}
a {
  text-decoration: none;
  color: black;
}

section {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  z-index: 1049;
}
.navbar .navbar-brand img {
  height: 80px;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item {
  padding: 0.3rem 1.3rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  display: flex;
  align-items: center;
  background: rgb(48, 48, 48);
  color: white;
  border-radius: 0.5rem;
  transition: 0.5s;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta:hover {
  background: #F7AF59;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta a {
  color: white;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: white;
    z-index: 1049;
  }
  .navbar .navbar-brand img {
    height: 50px;
  }
  .navbar .navbar-collapse {
    flex-grow: 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 0.3rem 1.3rem;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.cta {
    display: flex;
    align-items: center;
    background: rgb(48, 48, 48);
    color: white;
    border-radius: 0.5rem;
    transition: 0.5s;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.cta:hover {
    background: #F7AF59;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.cta a {
    color: white;
  }
}
#hero {
  width: 100%;
  height: 100vh;
}
#hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: auto;
  }
  #hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
#about {
  position: relative;
}
#about .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}
#about .bg img {
  width: 100%;
  height: 100%;
}
#about .img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
}
#about .img-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(50deg, #F7AF59 40%, #ffffff 100%);
  z-index: -1;
  border-radius: 100%;
  animation: shakeY;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 10s;
  /* don't forget to set a duration! */
  animation-iteration-count: infinite;
}
#about .img-box img {
  width: 80%;
}
#about .text-content {
  line-height: 2.5rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  #about {
    position: relative;
  }
  #about .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
  }
  #about .bg img {
    width: 100%;
    height: 100%;
  }
  #about .img-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
  }
  #about .img-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(50deg, #F7AF59 40%, #ffffff 100%);
    z-index: -1;
    border-radius: 100%;
    animation: shakeY;
    /* referring directly to the animation's @keyframe declaration */
    animation-duration: 10s;
    /* don't forget to set a duration! */
    animation-iteration-count: infinite;
  }
  #about .img-box img {
    width: 80%;
  }
  #about .text-content {
    line-height: 2.5rem;
    font-size: 1.1rem;
  }
}
#services .h2-box {
  text-align: center;
}
#services .card img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

#works .h2-box {
  text-align: center;
}
#works img {
  width: 100%;
}
#works .nav-pills .nav-link {
  color: #303030;
  border: 1px solid #F7AF59;
}
#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #F7AF59;
  color: #303030;
}

#contact {
  background: #F7AF59;
  color: white;
}
#contact h2 {
  color: #303030;
}
#contact .parallelogram {
  margin-bottom: 0rem;
}
#contact ul {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
#contact ul li {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #303030;
}
#contact ul li a {
  color: #505050;
}

@media (max-width: 768px) {
  #contact {
    background: #F7AF59;
    color: white;
  }
  #contact h2 {
    color: #303030;
  }
  #contact .parallelogram {
    margin-bottom: 0rem;
  }
  #contact ul {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
  }
  #contact ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #303030;
  }
  #contact ul li a {
    color: #505050;
  }
}
footer {
  background: #F7AF59;
  color: white;
  padding-bottom: 1rem;
}
footer a {
  color: white;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */