@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap"');
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "PingFang TC", "Noto Sans TC", "Source Han Sans TC", "Microsoft JhengHei", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: rgb(98, 98, 98);
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
  }
}
.navbar {
  position: fixed;
  top: 2rem;
  left: 50%;
  z-index: 1000;
  width: 90%;
  transform: translateX(-50%);
  border-radius: 5rem;
  background: rgba(255, 255, 255, 0.5) !important;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .container-fluid {
  padding: 0 1.5rem;
}
.navbar .navbar-brand {
  width: 100px;
}
.navbar .navbar-brand img {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    top: 1rem;
    border-radius: 2rem;
  }
  .navbar .navbar-brand {
    width: 60px;
  }
  .navbar .navbar-brand img {
    width: 100%;
  }
}
section {
  padding: 8rem 0 0;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0 0;
  }
}
.cta-btn {
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  color: black;
}
.cta-btn span {
  background: white;
  flex-grow: 1;
  display: inline-block;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  transition: 1s;
}
.cta-btn .icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
}
.cta-btn .icon i {
  font-size: 1.5rem;
}
.cta-btn:hover span {
  background: black;
  color: white;
}
.cta-btn:hover .icon {
  background: black;
  color: white;
}

#hero {
  margin: -8rem 0 0;
}
#hero #myCarousel {
  --f-carousel-slide-width: 100%;
  height: 100vh;
  --f-progress-color: transparent;
  border-radius: 1rem;
}
#hero #myCarousel .f-carousel__slide {
  width: 100%;
  border-radius: 1rem;
}
#hero #myCarousel .f-carousel__slide .img-box {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
#hero #myCarousel .f-carousel__slide .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center bottom;
     object-position: center bottom;
  display: block;
}
#hero .f-carousel {
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
}
#hero .f-carousel .cta {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  padding: 3rem;
}
#hero .f-carousel .cta h1 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 400;
  color: white;
  text-align: end;
  line-height: 2.5rem;
  text-shadow: 1px 0px 80px black;
}

@media (max-width: 768px) {
  #hero {
    margin: -4rem 0 0;
  }
  #hero .f-carousel {
    position: relative;
    padding: 0.5rem;
    border-radius: 1rem;
  }
  #hero .f-carousel .cta {
    padding: 1.5rem;
  }
  #hero .f-carousel .cta h1 {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
#about .about-card {
  background: linear-gradient(135deg, rgb(226, 226, 226) 10%, rgb(255, 255, 255) 90%);
}
#about .about-card .img-box {
  height: 400px;
}
#about .about-card p {
  line-height: 2rem;
}

#services .services-card {
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 1rem 2rem;
  height: 350px;
}
#services .services-card.services-card-2 {
  background: #000;
  color: white;
}
#services .services-card.services-card-2 .img-box img {
  filter: invert(1);
}
#services .services-card.services-card-2:hover {
  background: white;
}
#services .services-card.services-card-2:hover h3 {
  color: black !important;
}
#services .services-card.services-card-2:hover .img-box img {
  filter: invert(0);
}
#services .services-card .img-box {
  position: absolute;
  width: 100%;
  top: -50px;
  left: 100px;
  transform: rotate(35deg);
  transition: 1s;
}
#services .services-card .img-box img {
  width: 75%;
}
#services .services-card h3 {
  font-weight: 400;
  font-size: 1.8rem;
}
#services .services-card:hover {
  background: #000;
}
#services .services-card:hover h3 {
  color: white;
}
#services .services-card:hover .img-box {
  transform: rotate(25deg);
}
#services .services-card:hover .img-box img {
  filter: invert(1);
}

@media (max-width: 768px) {
  #services .services-card {
    margin-bottom: 1rem;
  }
  #services .services-card h3 {
    font-weight: 400;
    font-size: 1.5rem;
  }
}
#portfolio .img-box {
  display: inline-block;
  aspect-ratio: 3/2;
}
#portfolio .portfolio-content {
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(226, 226, 226) 0%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#portfolio .portfolio-content h3 {
  font-weight: 400;
  color: #474747;
  line-height: 2.5rem;
}
#portfolio .portfolio-content h3 span {
  color: #000;
  font-size: 1rem;
  padding: 0rem 1rem;
  display: inline-block;
  border: 1px solid black;
  border-radius: 5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  #portfolio .portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  #portfolio .portfolio-content h3 span {
    color: #000;
    font-size: 0.8rem;
    padding: 0rem 0.8rem;
    display: inline-block;
    border: 1px solid black;
    border-radius: 5rem;
    margin-bottom: 0.5rem;
    line-height: auto;
  }
}
#process .process-card {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 1.5rem;
}
#process .process-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#process .process-card h3 span {
  border-radius: 5rem;
  width: 4px;
  height: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid black;
  margin-right: 0.5rem;
}
#process .process-card p {
  padding: 0;
  margin: 0;
}
#process .process-card .collapse p {
  margin-bottom: 1rem;
}

#contact {
  margin-top: 5rem;
  width: 100%;
  overflow-x: hidden;
  background: #7e7e7e;
  color: black;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(226, 226, 226) 0%);
}
#contact table td {
  padding-bottom: 1rem;
}
#contact table td a {
  color: rgb(113, 113, 113);
  text-decoration: none;
}
#contact .text-justify {
  text-align: justify;
}

@media (max-width: 768px) {
  #contact ul {
    list-style: none;
    padding: 0;
  }
  #contact ul li {
    margin-bottom: 1rem;
    font-weight: 300;
  }
  #contact ul li a {
    text-decoration: none;
  }
  #contact table td {
    font-size: 0.9rem;
    padding-bottom: 1rem;
  }
  #contact table td a {
    text-decoration: none;
  }
  #contact .text-justify {
    text-align: justify;
  }
}
footer {
  color: #000;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(226, 226, 226) 0%);
  padding: 1rem;
}

@media (max-width: 768px) {
  footer {
    font-size: 0.8rem;
  }
}
.more-btn {
  text-decoration: none;
  color: gray;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.more-btn i {
  margin-left: 0.3rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 1rem 0;
}

.rounded-lg-3 {
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .rounded-lg-3 {
    border-radius: 0rem;
  }
}/*# sourceMappingURL=style.css.map */