@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;
  background: #f2f2f2;
}

h2 {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
}
section {
  padding: 8rem 0;
}

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

.navbar.scrolled {
  filter: none;
  background: rgba(255, 255, 255, 0.398);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  filter: invert(1);
  transition: 0.5s;
}
.navbar .navbar-brand img {
  height: 40px;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: black;
  border-radius: 2rem;
  margin-left: 1rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  color: white;
  border-radius: 2rem;
}

@media (max-width: 768px) {
  .navbar.scrolled {
    filter: none;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    z-index: 1049;
    filter: invert(0);
    transition: 0.5s;
  }
  .navbar .navbar-brand img {
    height: 30px;
  }
  .navbar .navbar-collapse {
    flex-grow: 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 0rem;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.cta {
    background: black;
    border-radius: 2rem;
    margin-left: 0rem;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.cta a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: white;
    border-radius: 2rem;
  }
}
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
#hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 7rem;
}
#hero .cta-box .cta-content {
  background: rgba(255, 255, 255, 0.398);
  border-radius: 2rem;
  padding: 3rem 3rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.373);
}
#hero .cta-box .cta-content h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 2.5rem;
}
#hero .cta-box .cta-content p {
  margin-bottom: 1rem;
}
#hero .cta-box .cta-content a {
  background: black;
  color: white;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  transition: 0.6s;
}
#hero .cta-box .cta-content a .icon-box {
  margin-left: 0.8rem;
  width: 30px;
  height: 30px;
  background: rgb(255, 255, 255);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero .cta-box .cta-content a .icon-box i {
  color: black;
}
#hero .cta-box .cta-content a:hover {
  background: #00B900;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: auto;
    position: relative;
  }
  #hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
  #hero .cta-box {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding: 2rem;
  }
  #hero .cta-box .cta-content {
    background: rgba(255, 255, 255, 0.398);
    border-radius: 2rem;
    padding: 1rem;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    border: 1px solid rgba(90, 90, 90, 0.373);
  }
  #hero .cta-box .cta-content h1 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5rem;
  }
  #hero .cta-box .cta-content p {
    margin-bottom: 1rem;
  }
  #hero .cta-box .cta-content a {
    background: black;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    transition: 0.6s;
  }
  #hero .cta-box .cta-content a .icon-box {
    margin-left: 0.8rem;
    width: 30px;
    height: 30px;
    background: rgb(255, 255, 255);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero .cta-box .cta-content a .icon-box i {
    color: black;
  }
  #hero .cta-box .cta-content a:hover {
    background: #00B900;
    border-radius: 1rem;
  }
}
#slogan p {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  #slogan p {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
  }
}
#about {
  padding: 0;
  margin: 0rem 0 4rem;
  background: rgb(212, 212, 212);
}
#about img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
#about ul {
  list-style: none;
  padding: 0;
}
#about ul li {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #about {
    padding: 0;
    margin: 0rem 0 4rem;
    background: rgb(212, 212, 212);
  }
  #about img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #about ul {
    list-style: none;
    padding: 0;
  }
  #about ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}
#services .services-card {
  background: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100%;
}
#services .services-card .img-box {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
#services .services-card .img-box img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .services-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
#services .services-card ul {
  list-style: none;
  padding: 0;
}
#services .services-card ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: start;
  font-size: 1.2rem;
}
#services .services-card ul li i {
  font-size: 1.5rem;
  margin-right: 0.3rem;
  color: rgb(133, 133, 133);
  padding-top: 0.3rem;
}

@media (max-width: 768px) {
  #services .services-card {
    background: rgb(255, 255, 255);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 1.5rem;
    height: auto;
  }
  #services .services-card .img-box {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  #services .services-card .img-box img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #services .services-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  #services .services-card ul {
    list-style: none;
    padding: 0;
  }
  #services .services-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: start;
    font-size: 1rem;
  }
  #services .services-card ul li i {
    font-size: 1.5rem;
    margin-right: 0.3rem;
    color: rgb(133, 133, 133);
    padding-top: 0.3rem;
  }
}
#works img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #works img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#concept .concept-card {
  background: white;
  text-align: center;
  border-radius: 1rem;
  padding: 3rem 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#concept .concept-card h3 {
  margin-bottom: 2rem;
}
#concept .concept-card p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #concept .concept-card {
    background: white;
    text-align: center;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #concept .concept-card h3 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
  #concept .concept-card p {
    font-size: 1rem;
  }
}
#contact {
  background: #ffffff;
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
#contact .contact-box h3 {
  font-size: 1.3rem;
}
#contact .contact-box .icon-box {
  background: #4a4a4a;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #4a4a4a;
  font-weight: 600;
  font-size: 1.4rem;
}
#contact .contact-box a.small {
  font-size: 1rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #contact {
    background: #ffffff;
  }
  #contact .contact-box {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 2rem;
  }
  #contact .contact-box h3 {
    font-size: 1.1rem;
  }
  #contact .contact-box .icon-box {
    background: #4a4a4a;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
  }
  #contact .contact-box .icon-box svg {
    width: 25px;
    height: 25px;
  }
  #contact .contact-box .icon-box i {
    color: white;
    font-size: 1.5rem;
  }
  #contact .contact-box a {
    color: #4a4a4a;
    font-weight: 600;
    font-size: 1rem;
  }
  #contact .contact-box a.small {
    font-size: 1rem;
  }
  #contact .contact-box span {
    display: block;
    color: gray;
    margin-top: 0.5rem;
  }
}
footer {
  padding: 2rem;
  background: white;
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */