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

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

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

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: ˋ00;
}

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;
}

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

h2 {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  color: #a4603a;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
    gap: 0.5rem;
  }
}
h2 span:first-child {
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  font-size: 3rem;
}
@media (max-width: 768px) {
  h2 span:first-child {
    font-size: 2rem;
  }
}
h2 span:last-child {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: #a4603a;
}

.navbar.scrolled .navbar-brand {
  transition: 0.5s;
}
.navbar.scrolled .navbar-brand img {
  width: 90px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 70px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #f8efde;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 150px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 70px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
}
@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: #a4603a;
}

#hero {
  margin-top: 179px;
  padding: 0rem 0 2rem;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 94px;
  }
}
#hero .cta-content {
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-content {
    text-align: center;
    padding: 1rem 1rem;
  }
}
#hero .cta-content h1 {
  margin-bottom: 2rem;
  color: #a4603a;
}
#hero .cta-content p {
  margin-bottom: 2rem;
  color: rgb(63, 63, 63);
}
#hero .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#hero .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
  flex-shrink: 0;
}
#hero .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-content .btn-box a:first-child {
  background: #a4603a;
  color: white;
}
#hero .cta-content .btn-box a:last-child {
  color: white;
  background: #c9d3c0;
  color: rgb(87, 83, 83);
}
#hero .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #a4603a;
}
#hero .swiper {
  width: 95%;
  aspect-ratio: 3/4;
  overflow: hidden;
  padding: 0.5rem;
  border-radius: 50%/40%;
  border: 2px solid rgba(164, 96, 58, 0.5);
}
@media (max-width: 768px) {
  #hero .swiper {
    width: 80%;
    margin-bottom: 1rem;
  }
}
#hero .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%/40%;
}

#about p {
  line-height: 2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #about img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

#services .service-card {
  padding: 2rem;
}
#services .service-card .icon-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
#services .service-card .icon-box::before {
  content: "";
  width: 25%;
  aspect-ratio: 1/1;
  background: #c9d3c0;
  z-index: -1;
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  bottom: -1rem;
  border-radius: 100%;
}
#services .service-card .icon-box svg {
  width: 50%;
  stroke: #a4603a;
  fill: #a4603a;
}
#services .service-card h3 {
  color: #a4603a;
}
#services .service-card p {
  line-height: 2;
  color: rgb(67, 67, 67);
}

#process {
  background: #c9d3c0;
}
#process .process-card {
  background: #f8efde;
  padding: 2rem;
  border-radius: 1rem;
}
#process .process-card i {
  font-size: 5rem;
  color: #a4603a;
}
#process .process-card h3 {
  color: #a4603a;
  margin: 1rem 0;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #a4603a;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}
#works img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #works img {
    height: 400px;
  }
}

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

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