@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(1.75rem, 3.5vw, 2rem);
  font-weight: 600;
}

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

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

h2 {
  margin-bottom: 3rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D3557;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #1D3557;
  margin-right: 1rem;
  border-radius: 100%;
}

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

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #FDC500;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 90px;
  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;
  transition: 0.5s;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  background: #D62828;
  color: white;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #D62828;
  color: white;
  border-radius: 2rem;
}

#hero {
  padding-top: 3rem;
  position: relative;
  overflow: hidden;
  background: #FDC500;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #hero {
    padding-top: 6rem;
  }
}
#hero h1 {
  color: rgb(255, 255, 255);
  background: #FDC500;
  font-size: 10rem;
  font-weight: 900;
  transform: rotate(-4deg) translate(-1rem, 1rem);
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 6.4rem;
    transform: rotate(-4deg) translate(-0.5rem, 1rem);
    white-space: nowrap;
    padding: 0rem 0 8rem;
  }
}
#hero h1::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 0;
  background: white;
  width: 120%;
  height: 10rem;
}
@media (max-width: 768px) {
  #hero h1::before {
    bottom: -8rem;
    transform: rotate(-9deg) translate(-0.5rem, 1rem);
  }
}
#hero .people {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  z-index: 2;
  display: block;
  height: 680px;
  transform: scaleX(-1);
  filter: drop-shadow(10px 20px 20px rgba(138, 138, 138, 0.4));
}
#hero .image-overlay {
  width: 100%;
  height: 550px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 600px, 0% 100%);
          clip-path: polygon(0 100px, 100% 0, 100% 600px, 0% 100%);
}
#hero .image-overlay .text {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  padding: 3rem 0rem 5rem 10rem;
}
@media (max-width: 768px) {
  #hero .image-overlay .text {
    left: auto;
    right: 0;
    padding: 4rem 2rem;
  }
}
#hero .image-overlay .text ul {
  margin-bottom: 2rem;
}
#hero .image-overlay .text ul li {
  color: #FDC500;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #hero .image-overlay .text ul li {
    font-size: 1.5rem;
  }
}
#hero .image-overlay .text a {
  display: inline-block;
  color: #FDC500;
  padding: 0.5rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 2rem;
  border: 2px solid #FDC500;
  transition: 0.5s;
}
#hero .image-overlay .text a:hover {
  background: #FDC500;
  color: #1D3557;
}
#hero .image-overlay img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .image-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(253, 197, 0, 0.9);
  background-color: rgba(214, 40, 40, 0.9);
  mix-blend-mode: multiply;
  pointer-events: none;
}

#about h3 {
  margin-bottom: 1rem;
  display: inline-block;
  color: #D62828;
}
#about p, #about ul {
  margin-bottom: 2rem;
  line-height: 1.5;
}
#about ul {
  list-style: none;
  padding: 0;
}
#about ul li i {
  padding-right: 0.5rem;
  color: #FDC500;
}

#services img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

#awards img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

#works img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #works img {
    height: 200px;
  }
}
#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #D62828;
}
#works .nav-pills .nav-link {
  color: #FDC500;
}

#contact {
  background: #F7F7F7;
}
@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 {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #contact .contact-box h3 {
    font-size: 1.1rem;
  }
}
#contact .contact-box .icon-box {
  background: #D62828;
  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: #D62828;
  font-weight: 600;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  #contact .contact-box a {
    font-size: 1.2rem;
  }
}
#contact .contact-box a.small {
  font-size: 1rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

#process {
  background-image: linear-gradient(-45deg, #FFEFD9 25%, #fff 25%, #fff 50%, #FFEFD9 50%, #FFEFD9 75%, #fff 75%, #fff);
  background-size: 10px 10px;
}
#process .process-steps {
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  #process .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
}
#process .process-step {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 160px;
  min-height: 220px;
  position: relative;
}
@media (max-width: 768px) {
  #process .process-step {
    min-height: 0;
  }
}
#process .process-step:hover {
  box-shadow: 0 8px 32px rgba(214, 40, 40, 0.13);
  transform: translateY(-6px) scale(1.04);
}
#process .process-step .icon {
  width: 64px;
  height: 64px;
  background: #FDC500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(253, 197, 0, 0.13);
  position: relative;
}
#process .process-step .icon .process-num {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 32px;
  height: 32px;
  background: #D62828;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(214, 40, 40, 0.13);
  border: 2px solid #fff;
  z-index: 2;
}
#process .process-step .step-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1D3557;
  margin-top: 0.5rem;
  line-height: 1.5;
}

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