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

.h2-box {
  color: #5b5b5b;
}
.h2-box h2 {
  font-family: "Helvetica", "PingFang TC", "Noto Sans TC";
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .h2-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
section {
  padding: 8rem 0 4rem;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
a {
  text-decoration: none;
  color: black;
}

.navbar.scrolled {
  background: red;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.275);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  height: 80px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: red;
}
.navbar .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}

#hero {
  margin-top: 56px;
}
#hero h1 {
  font-size: 8rem;
  margin: 6rem 0 0rem;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 3rem;
    margin: 4rem 0 0.5rem;
  }
}
#hero h1 .rotate {
  animation: spin 6s linear infinite;
  display: inline-block;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hero p {
  color: #767676;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
#hero .cta {
  padding: 0.8rem 5rem;
  border: 1px solid #aeaeae;
  display: inline-block;
  border-radius: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  color: #525252;
}
@media (max-width: 768px) {
  #hero .cta {
    padding: 0.5rem 2rem;
    font-size: 1rem;
  }
}
#hero .cta i {
  font-size: 1.8rem;
  padding-left: 0.5rem;
}
#hero .cta:hover {
  background: #2f2f2f;
  color: white;
}
#hero .swiper {
  width: 100%;
  height: 80vh;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 50vh;
  }
}
#hero .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

h3 {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.2rem;
  }
}

p {
  color: #a4a4a4;
  font-size: 1.1rem;
  letter-spacing: normal;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

#services .services-card {
  border: 1px solid rgb(177, 177, 177);
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
#services .services-card svg {
  width: 30%;
  height: auto;
  fill: rgb(78, 78, 78);
}
#services .services-card h4 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: rgb(78, 78, 78);
}
@media (max-width: 768px) {
  #services .services-card h4 {
    font-size: 1.1rem;
  }
}
#services .services-card:hover {
  background: #2f2f2f;
  transform: scale(1.05);
}
#services .services-card:hover svg {
  fill: white;
}
#services .services-card:hover h4 {
  color: white;
}

#works .more-btn {
  font-size: 1rem;
  font-weight: 300;
  padding: 0.5rem 1.2rem;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.5s;
}
#works .more-btn:hover {
  background: #000;
  color: white;
}
#works .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/2;
}
#works .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
#works .image .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.6s;
  opacity: 0;
}
#works .image .content h3 {
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.5215686275);
  letter-spacing: 0.1rem;
  font-size: 1.3rem;
}
#works .image:hover .content {
  opacity: 1;
}
#works .image:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #works .work-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
  }
}
#contact {
  color: white;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 0;
  }
}
#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=style.css.map */