@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");
:root {
  font-size: clamp(15px, 2.8vw, 18px);
}

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

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

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  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(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

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

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

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

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

:root {
  --swiper-theme-color: #6BAE9D;
  /* 這會同時改變箭頭、圓點等主色 */
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #FAFAF7;
  overflow-x: hidden;
}

.h2-box {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .h2-box {
    margin-bottom: 2rem;
  }
}
.h2-box span {
  color: #6BAE9D;
  padding-bottom: 2rem;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
}
.h2-box h2 {
  color: #2C3E50;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  color: #6BAE9D;
}

.navbar.scrolled {
  background: #2C3E50;
}
.navbar.scrolled .navbar-brand {
  transition: 0.5s;
  overflow: hidden;
}
.navbar.scrolled .navbar-brand img {
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 60px;
  }
}
.navbar.scrolled .navbar-brand .logo-text {
  display: inline-flex;
  flex-direction: column;
}
.navbar.scrolled .navbar-brand .logo-text span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
  overflow: hidden;
  color: #FAFAF7;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar .navbar-brand img {
  width: 100px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 60px;
  }
}
.navbar .navbar-brand .logo-text {
  display: inline-flex;
  flex-direction: column;
}
.navbar .navbar-brand .logo-text span {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: #FAFAF7;
}
@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: #2C3E50;
  color: white;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 84.38px;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: start;
  background: rgba(44, 62, 80, 0.3);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: rgba(44, 62, 80, 0.6);
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
}
#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.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
#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 {
  background: #6BAE9D;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
  border: 1px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #6BAE9D;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .scroll-box {
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  right: 2rem;
}
@media (max-width: 768px) {
  #hero .scroll-box {
    display: none;
  }
}

#about p {
  margin-bottom: 2rem;
}
#about p:last-of-type {
  margin-bottom: 0;
}
#about .swiper {
  height: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  #about .swiper {
    margin-top: 3rem;
    height: 300px;
  }
}
#about .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 0 0 50px;
}
@media (max-width: 768px) {
  #about .swiper img {
    border-radius: 30px 0 0 30px;
  }
}

.marquee {
  overflow: hidden;
  display: flex;
}
.marquee span {
  font-size: 5em;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 900;
  display: inline-block;
  color: #FAFAF7;
  text-shadow: -1px -1px 0 #9b9b9b, 1px -1px 0 #9b9b9b, -1px 1px 0 #9b9b9b, 1px 1px 0 #9b9b9b;
}

#services .services-row {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  #services .services-row {
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  #services .services-card {
    margin-bottom: 5rem;
  }
}
#services .services-card .img-box {
  height: 400px;
  position: relative;
  color: #6BAE9D;
}
@media (max-width: 768px) {
  #services .services-card .img-box {
    height: 250px;
  }
}
#services .services-card .img-box .step, #services .services-card .img-box h3 {
  position: absolute;
  left: 2rem;
  z-index: 4;
}
#services .services-card .img-box .step {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  top: -2.5rem;
}
@media (max-width: 768px) {
  #services .services-card .img-box .step {
    top: -2rem;
  }
}
#services .services-card .img-box h3 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  bottom: -2.5rem;
}
@media (max-width: 768px) {
  #services .services-card .img-box h3 {
    bottom: -2rem;
  }
}
#services .services-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
#services .services-card .text {
  padding: 4rem 2rem 0;
}
@media (max-width: 768px) {
  #services .services-card .text {
    padding-top: 3rem;
  }
}
#services .services-card .text ul {
  list-style: circle;
}
#services .services-card .text ul li {
  margin-bottom: 1rem;
}

#process {
  background: #2C3E50;
}
#process .h2-box span {
  color: #6BAE9D;
}
#process .process-card {
  color: white;
  border-left: 1px solid #6BAE9D;
  padding-left: 2rem;
  margin-bottom: 3rem;
}
#process .process-card .step {
  color: #6BAE9D;
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}
#process .process-card h3 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
  margin: 2rem 0 1.5rem;
}

#locations .locations-row {
  padding: 3rem 0;
  border-top: 1px solid rgb(183, 183, 183);
}
#locations .locations-row .swiper {
  width: 100%;
  height: 400px;
}
@media (max-width: 768px) {
  #locations .locations-row .swiper {
    height: 300px;
  }
}
#locations .locations-row .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #locations .locations-row .swiper img {
    margin-top: 2rem;
  }
}
#locations .locations-row h3 {
  color: #2C3E50;
}
#locations .locations-row p {
  color: rgb(98, 98, 98);
}

#contact {
  background: #FAFAF7;
}
@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 .icon-box {
  background: #6BAE9D;
  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: #6BAE9D;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  background: #FAFAF7;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */