@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  font-family: 'Microsoft JhengHei', sans-serif;
  background-color: #0f0f0f;
  color: white;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  max-width: 1140px;
  width: 90%;
  margin: auto;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul,
ol {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  margin-top: 40px;
  padding-bottom: 8px;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  border-bottom: 1px solid;
}

p {
  line-height: 2;
}

img {
  width: 100%;
}

.link-btn {
  display: block;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  background-color: #818181;
  border: 1px solid #818181;
  color: white;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.btn {
  width: 140px;
  line-height: 24px;
  background-color: #818181;
  color: white;
  border-radius: 4px;
  font-size: 15px;
}

.btn i {
  width: 20px;
  line-height: 24px;
  margin-right: 8px;
}

.btn.line {
  background: transparent;
  border: 1px solid #818181;
  color: #818181;
}

section:not(:first-child) {
  padding-top: 40px;
  padding-bottom: 70px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar.active {
  background-color: #0f0f0f;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.navbar.active h1 a {
  color: white;
  text-shadow: 0 0 0;
}

.navbar.active .navbar-toggler i {
  color: white;
}

.navbar.active .navbar-collapse .navbar-nav .nav-link {
  color: white;
}

.navbar.open {
  background-color: #0f0f0f;
}

.navbar.open h1 a {
  color: white;
}

.navbar.open .navbar-toggler i {
  color: white;
}

.navbar h1 {
  font-size: 20px;
}

.navbar h1 a {
  margin-left: 12px;
  font-size: 24px;
  font-weight: 400;
  color: white;
  line-height: 1.8;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.navbar h1 a span {
  font-size: 14px;
  margin-left: 4px;
  font-weight: 300;
}

.navbar .navbar-toggler {
  color: transparent;
}

.navbar .navbar-toggler i {
  font-size: 18px;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-collapse {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.navbar .navbar-collapse .navbar-nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar .navbar-collapse .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-collapse .navbar-nav .nav-link {
  text-align: center;
  margin: 12px;
  padding: 10px;
  color: white;
}

#banner {
  position: relative;
}

#banner .img-box {
  height: 60vh;
  overflow: hidden;
}

#banner .img-box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoom-in 4s forwards;
          animation: zoom-in 4s forwards;
}

@-webkit-keyframes zoom-in {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes zoom-in {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

#banner .banner-content {
  padding: 60px 20px;
}

#banner .banner-content p {
  margin-bottom: 0;
}

#banner .banner-content strong {
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  color: #0f0f0f;
  margin-bottom: 12px;
}

#about {
  background: url("../image/bg-02.jpg") no-repeat center/cover, #252525;
  background-blend-mode: overlay;
}

#about img {
  height: 55vh;
  -o-object-fit: cover;
     object-fit: cover;
}

#services .services-box {
  position: relative;
}

#services .services-box img {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}

#services .services-box .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  color: white;
}

#services .services-box .text-box h3 {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
}

#services .services-box .text-box p {
  font-size: 14px;
  margin-top: 14px;
  font-weight: 300;
}

#design {
  background: url("../image/bg-01.png");
}

#design h3 {
  font-weight: 400;
  position: relative;
  margin-top: 80px;
  padding-bottom: 70px;
}

#design h3::after {
  content: "";
  position: absolute;
  top: 2.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.424);
  width: 0.5px;
}

#design a {
  display: block;
  border: 5px solid white;
}

#design a img {
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact {
  background-color: #0f0f0f;
  color: white;
}

#contact h2 {
  font-weight: 400;
  font-size: 40px;
  position: unset;
  -webkit-transform: unset;
          transform: unset;
  display: block;
  border-bottom: 0;
  margin: 0;
}

#contact strong {
  display: inline-block;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
}

#contact p {
  font-size: 14px;
}

#contact ul li {
  margin-bottom: 12px;
}

#contact ul li small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 8em;
  font-size: 16px;
  margin-right: 4px;
  line-height: 1.8;
}

#contact ul li a {
  width: 100%;
  color: white;
  line-height: 1.8;
}

#contact iframe {
  margin-top: 20px;
  height: 300px;
}

#contact .link-btn {
  border: 1px solid white;
  color: white;
  background-color: transparent;
  border-radius: 50%;
  width: 32px;
  line-height: 32px;
}

#contact .link-btn i {
  font-size: 16px;
}

footer {
  padding: 30px;
  padding-bottom: 80px;
  background-color: #0f0f0f;
  border: 1px solid #d6b68e19;
}

footer p,
footer a {
  margin: 0;
  font-size: 14px;
  color: white;
}

.quick-link-l {
  z-index: 99;
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 20px;
}

.quick-link-l .link-btn {
  margin-top: 20px;
  font-size: 20px;
}

.quick-link-s {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0f0f0f;
}

.quick-link-s .link-btn {
  font-size: 20px;
  line-height: 28px;
  width: 33.3333%;
  color: white;
  text-align: center;
  background-color: unset;
  border: 0;
  padding: 8px 0;
  float: left;
  margin: 0;
}

.quick-link-s .link-btn i {
  margin: auto;
}

@media screen and (min-width: 991px) {
  .navbar h1 a:hover,
  .navbar .navbar-collapse .navbar-nav .nav-link:hover,
  #contact a:hover,
  footer a:hover {
    color: #818181;
  }
  #contact .link-btn:hover,
  .link-btn:hover {
    background-color: #0f0f0f;
    cursor: pointer;
  }
  #contact .link-btn:hover i,
  .link-btn:hover i {
    color: white;
  }
  .btn:hover {
    color: white;
    background-color: #0f0f0f;
    border: 1px solid #0f0f0f;
  }
  #banner .img-box {
    position: relative;
    height: 80vh;
  }
  #banner .img-box:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
  }
  #banner .banner-content {
    position: absolute;
    left: 10%;
    bottom: 30px;
    z-index: 10;
    background-color: transparent;
  }
  #banner .banner-content p {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  #banner .banner-content strong {
    font-size: 48px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  #about {
    background-attachment: fixed;
  }
  #about img {
    height: 40vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #services .services-box:hover img {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  #services .services-box:hover .text-box {
    text-shadow: 0 1px 1px #000;
  }
  #services .services-box img {
    height: 50vh;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #services .services-box .text-box {
    width: 50%;
  }
  #services .services-box .text-box h3 {
    font-size: 24px;
  }
  #design h3 {
    margin-top: 100px;
  }
  #design a {
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    top: 0;
  }
  #design a:hover {
    -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 10px 8px rgba(0, 0, 0, 0.2);
    top: -10px;
  }
  #contact .row {
    padding: 60px 0;
  }
  #contact h2 {
    font-size: 60px;
  }
  #contact strong {
    font-size: 18px;
  }
  #contact iframe {
    margin-top: 0;
    height: 100%;
  }
  #contact .link-btn:hover {
    background-color: #818181;
    border: 1px solid #818181;
  }
  footer {
    padding-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */