@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1.1rem, 1vw, 1.2rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1.1rem, 1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1.1rem, 1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1.1rem, 1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  font-family: "PingFang TC", "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #2a2f3a;
}

.line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 30%;
}
@media (max-width: 768px) {
  .line {
    width: 80%;
  }
}
.line svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #c7dffc;
  stroke-miterlimit: 100;
  stroke-width: 5;
}

h2 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #2c3e5b;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 1rem;
  }
}

h3 {
  font-weight: 400;
  margin-bottom: 2rem;
}

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

a {
  text-decoration: none;
  color: #2c3e5b;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
}
.navbar.scrolled .navbar-brand img {
  width: 100px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 70px;
  }
}
.navbar.scrolled .navbar-collapse {
  flex-grow: 0;
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #2a2f3a;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 0.9);
  }
}
.navbar .navbar-toggler-icon {
  opacity: 1;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 150px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 100px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@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: #2c3e5b;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 100px;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: end;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 0;
    position: relative;
    margin-top: -2rem;
    background: none;
    justify-content: center;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 2rem 4rem;
    background: #c7dffc;
    background: rgba(199, 223, 252, 0.9);
    color: #2c3e5b;
    border-radius: 0;
  }
}
#hero .cta-box .cta-content span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  line-height: 1.5;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#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.8rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1.5rem;
  }
}
#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 {
  color: white;
  border: 2px solid white;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a:first-child {
    color: #2c3e5b;
    border-color: #2c3e5b;
  }
}
#hero .cta-box .cta-content .btn-box a:first-child:hover {
  background: white;
  color: #2a2f3a;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a:last-child {
    color: #2c3e5b;
  }
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #2c3e5b;
}
#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 {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.648), rgba(199, 223, 252, 0.2));
}
#about p {
  margin-bottom: 1.5rem;
  line-height: 2;
  font-weight: 300;
}

#services {
  background: linear-gradient(to top, white, rgba(199, 223, 252, 0.2));
}
#services .services-box {
  background: rgba(255, 255, 255, 0.571);
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  padding: 3rem;
}
@media (max-width: 768px) {
  #services .services-box {
    background: rgba(255, 255, 255, 0.8);
  }
}
#services .service-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
#services .service-card .icon-box {
  width: 100px;
  padding: 1rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
#services .service-card .icon-box svg {
  fill: #2c3e5b;
}
#services .service-card h4 {
  color: #2c3e5b;
}
#services .service-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
#services .service-card ul li {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 0.6rem;
  background: #6e7f91;
  color: white;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
  background: #c7dffc;
  color: #6e7f91;
}

#process {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(199, 223, 252, 0.2));
}
#process .process-box {
  background: rgba(255, 255, 255, 0.707);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
@media (max-width: 768px) {
  #process .process-box {
    padding: 1rem;
  }
}
#process .process-step {
  gap: 1rem;
  align-items: flex-start;
  background: rgba(199, 223, 252, 0.25);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}
#process .process-step img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #process .process-step img {
    height: 250px;
  }
}
#process .process-step .step-content h4 {
  padding-top: 1rem;
  margin: 0 0 0.5rem 0;
  color: #2c3e5b;
}
#process .process-step .step-content ul {
  margin: 0;
  padding-left: 1rem;
}
#process .process-step .step-content li {
  line-height: 1.8;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #2c3e5b;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#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;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  margin-bottom: 0.5rem;
}
#contact .contact-box .icon-box {
  background: #2c3e5b;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #c7dffc;
}
#contact .contact-box .icon-box i {
  color: white;
  color: #6e7f91;
  font-size: 2rem;
}
#contact .contact-box .icon-box svg {
  fill: #6e7f91;
}
#contact .contact-box a {
  color: #2c3e5b;
  font-weight: 600;
}
#contact .contact-box a.small {
  font-size: 0.9rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

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

.auto-carousel {
  padding: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}/*# sourceMappingURL=all.css.map */